26 lines
346 B
SCSS
26 lines
346 B
SCSS
@charset "UTF-8";
|
|
|
|
$primary: #fd560f;
|
|
|
|
body {
|
|
background-color: #f6f7f8;
|
|
display: flex;
|
|
height: 100vh;
|
|
// flex-direction: column;
|
|
|
|
> .aside-wrap {
|
|
width: 30%;
|
|
background-color: #fff;
|
|
padding: 40px 20px 40px 40px;
|
|
// flex: 1;
|
|
}
|
|
|
|
> .content {
|
|
width: 70%;
|
|
padding: 40px;
|
|
// flex: 1;
|
|
}
|
|
}
|
|
|
|
@import "steps";
|