Files
astuto/app/javascript/stylesheets/components/SiteSettings/PostStatuses/index.scss

37 lines
471 B
SCSS
Raw Normal View History

.postStatusesList {
2022-05-01 18:00:38 +02:00
@extend
.p-0,
.m-0;
list-style: none;
.postStatusEditable {
@extend
.d-flex,
.justify-content-between,
.p-3;
a {
cursor: pointer;
&:hover { text-decoration: underline; }
}
.postStatusFormCancelButton {
align-self: center;
}
}
}
.postStatusForm {
@extend
.d-flex,
2022-07-18 10:47:54 +02:00
.flex-grow-1,
2022-05-01 18:00:38 +02:00
.m-2;
column-gap: 8px;
.postStatusColorInput {
flex: 0 1 100px;
}
2022-05-01 18:00:38 +02:00
}