Skip to content

Commit a8e2e09

Browse files
authored
fix(QSeparator): do not allow separator to be flex shrunk quasarframework#8280 (quasarframework#8299)
quasarframework#8280
1 parent 19e46b6 commit a8e2e09

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

ui/dev/src/pages/form/select-part-8.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
</template>
6767
</q-select>
6868

69-
<q-separator spaced></q-separator>
69+
<q-separator spaced />
7070
<q-item-label header>General</q-item-label>
7171

7272
<q-item tag="label" v-ripple>
@@ -108,7 +108,7 @@
108108
</q-item-section>
109109
</q-item>
110110

111-
<q-separator spaced></q-separator>
111+
<q-separator spaced />
112112
<q-item-label header>Notifications</q-item-label>
113113

114114
<q-item tag="label" v-ripple>

ui/src/components/separator/QSeparator.sass

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
background: $separator-color
44
margin: 0
55
transition: background .3s, opacity .3s
6+
flex-shrink: 0
67

78
&--dark
89
background: $separator-dark-color

ui/src/components/separator/QSeparator.styl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
background: $separator-color
44
margin: 0
55
transition: background .3s, opacity .3s
6+
flex-shrink: 0
67

78
&--dark
89
background: $separator-dark-color

0 commit comments

Comments
 (0)