Skip to content

Commit 362dd23

Browse files
committed
feat(export): Small UI change
Signed-off-by: Timo Reusch <git@timo-reusch.de>
1 parent f961401 commit 362dd23

2 files changed

Lines changed: 21 additions & 5 deletions

File tree

src/components/navigation/BoardExportModal.vue

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,19 @@ p.note {
103103
color: var(--color-text-maxcontrast);
104104
}
105105
106+
/* the element is only there to group the controls for assistive tech, the
107+
browser's default border would otherwise render as a stray rule */
106108
fieldset.options {
107-
margin-top: 20px;
108-
border-top: 1px solid var(--color-border);
109-
padding-top: 10px;
109+
margin-top: 16px;
110+
border: none;
111+
padding: 0;
110112
}
111113
112114
fieldset.options legend {
113115
font-weight: bold;
114-
margin-bottom: 5px;
116+
margin-bottom: 4px;
117+
padding: 0;
118+
float: none;
119+
width: auto;
115120
}
116121
</style>

src/components/navigation/BoardImportModal.vue

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,19 @@ p.note {
115115
color: var(--color-text-maxcontrast);
116116
}
117117
118+
/* the element is only there to group the controls for assistive tech, the
119+
browser's default border would otherwise render as a stray rule */
120+
fieldset.options {
121+
margin-top: 16px;
122+
border: none;
123+
padding: 0;
124+
}
125+
118126
fieldset.options legend {
119127
font-weight: bold;
120-
margin-bottom: 5px;
128+
margin-bottom: 4px;
129+
padding: 0;
130+
float: none;
131+
width: auto;
121132
}
122133
</style>

0 commit comments

Comments
 (0)