1
0
mirror of https://github.com/nostalgic-css/NES.css.git synced 2025-09-02 18:42:47 +02:00

👍 actionグループを追加

This commit is contained in:
BcRikko
2018-09-29 17:12:18 +09:00
parent f399767f52
commit bf06208d1e
7 changed files with 56 additions and 6 deletions

View File

@@ -20,6 +20,10 @@ $border-size: 6px;
box-shadow: inset 4px 4px 0 0 $shadow-color;
}
& + & {
margin-left: 1rem;
}
// border
&::before,
&::after {

View File

@@ -1,3 +1,4 @@
@charset "utf-8";
@import "input.scss";
@import "group.scss";

14
scss/form/group.scss Normal file
View File

@@ -0,0 +1,14 @@
.group {
display: flex;
align-items: center;
justify-content: flex-start;
margin: 1rem 0;
&.-center {
justify-content: center;
}
&.-right {
justify-content: flex-end;
}
}