Skip to content

Commit

Permalink
Fixes Sidebar editor repetition count for "days" is not put on separa…
Browse files Browse the repository at this point in the history
…te line #6429
  • Loading branch information
keremsemiz committed Dec 5, 2024
1 parent e86c82a commit b94c7c0
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions css/app-sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,22 @@
}

.repeat-option-set {

display: flex;
flex-direction: column;
.repeat-option-set__repeat {
display: flex;
align-items: center; // Vertically center items
gap: 10px;
}
.repeat-option-set-section {
&:not(:first-of-type) {
margin-top: 20px
}

&--on-the-select {
display: flex;
align-items: center;


.v-select {
width: 100%;
Expand Down Expand Up @@ -180,7 +188,6 @@

&--interval-freq {
display: flex;
align-items: center;

.multiselect {
min-width: 100px;
Expand All @@ -191,10 +198,17 @@
&--end {
margin-top: 20px;
display: flex;
align-items: center;

flex-direction: column;
align-items: flex-start;
.repeat-option-end {
&__label,
width: 100%;
display: flex;
flex-wrap: wrap;
&__label{
display: block;
min-width: 160px;
width: 100%;
}
&__end-type-select {
display: block;
min-width: 160px;
Expand Down

0 comments on commit b94c7c0

Please sign in to comment.