schlechtenburg/packages/paragraph/lib/style.scss

15 lines
306 B
SCSS
Raw Normal View History

2020-05-20 14:21:08 +00:00
.sb-paragraph {
2020-05-27 13:57:57 +00:00
flex-basis: 100%;
2020-05-25 21:34:17 +00:00
&__input {
display: block;
2020-05-27 13:57:57 +00:00
flex-basis: 100%;
2020-05-25 21:34:17 +00:00
}
2020-05-24 20:39:14 +00:00
&_align {
2020-05-27 15:32:35 +00:00
&-left { &, .sb-paragraph__input { text-align: left; } }
&-right { &, .sb-paragraph__input { text-align: right; } }
&-center { &, .sb-paragraph__input { text-align: center; } }
2020-05-24 20:39:14 +00:00
}
2020-05-20 14:21:08 +00:00
}