mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
refactor flow components
This commit is contained in:
parent
7f411713f4
commit
d0e99adc9f
32 changed files with 31 additions and 107 deletions
19
src/containers/flow/FlowGrid/styles.module.scss
Normal file
19
src/containers/flow/FlowGrid/styles.module.scss
Normal file
|
@ -0,0 +1,19 @@
|
|||
@import 'src/styles/variables';
|
||||
|
||||
@mixin mobile {
|
||||
@media (max-width: $cell * 2) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
|
||||
.cell {
|
||||
&.horizontal,
|
||||
&.quadro {
|
||||
grid-column-end: span 2;
|
||||
}
|
||||
|
||||
&.vertical,
|
||||
&.quadro {
|
||||
grid-row-end: span 2;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue