30 lines
301 B
SCSS
30 lines
301 B
SCSS
@import "../variables";
|
|
|
|
.child {
|
|
background-color: rgba($background, 0.7);
|
|
padding: 10px;
|
|
border: 2px solid $border;
|
|
}
|
|
|
|
.title {
|
|
& svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|
|
|
|
.main{
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.btn{
|
|
float: right;
|
|
margin-top: 10px;
|
|
width: 200px;
|
|
|
|
padding: 0;
|
|
}
|
|
|
|
|
|
|