Moving forward.
[wolnelektury.git] / src / wolnelektury / static / 2022 / styles / layout / _section.scss
1 .l-section {
2   display: flex;
3   margin-left: auto;
4   margin-right: auto;
5   justify-content: center;
6
7   padding-left: 16px;
8   padding-right: 16px;
9
10   &.l-section--col {
11     flex-direction: column;
12   }
13
14   &.l-section--row {
15       flex-direction: column;
16       @include rwd($break-flow) {
17           flex-direction: row;
18       }
19   }
20 }
21