mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
fixed style files module names
This commit is contained in:
parent
52acdb283e
commit
2daa38ad12
223 changed files with 113 additions and 114 deletions
47
src/components/containers/Group/styles.module.scss
Normal file
47
src/components/containers/Group/styles.module.scss
Normal file
|
@ -0,0 +1,47 @@
|
|||
.group {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
|
||||
> :global(.group_filler) {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
&.vertical {
|
||||
flex-direction: column;
|
||||
|
||||
& > * {
|
||||
margin: $gap/2 0;
|
||||
|
||||
&:first-child { margin-top: 0; }
|
||||
&:last-child { margin-bottom: 0; }
|
||||
}
|
||||
}
|
||||
|
||||
&.horizontal {
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
||||
&.top {
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
&.bottom {
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
& > * {
|
||||
margin: 0 $gap / 2;
|
||||
|
||||
&:first-child { margin-left: 0; }
|
||||
&:last-child { margin-right: 0; }
|
||||
}
|
||||
}
|
||||
|
||||
&.wrap {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
&.seamless > * {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue