schlechtenburg/packages/paragraph/lib/style.scss

15 lines
306 B
SCSS
Raw Normal View History

2020-05-20 16:21:08 +02:00
.sb-paragraph {
2020-05-27 15:57:57 +02:00
flex-basis: 100%;
2020-05-25 23:34:17 +02:00
&__input {
display: block;
2020-05-27 15:57:57 +02:00
flex-basis: 100%;
2020-05-25 23:34:17 +02:00
}
2020-05-24 22:39:14 +02:00
&_align {
2020-05-27 17:32:35 +02: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 22:39:14 +02:00
}
2020-05-20 16:21:08 +02:00
}