initialize all components
This commit is contained in:
7
style/dashboard.scss
Normal file
7
style/dashboard.scss
Normal file
@ -0,0 +1,7 @@
|
||||
@import 'theme.scss';
|
||||
|
||||
.dashboard-container {
|
||||
width: 73%;
|
||||
background: green;
|
||||
height: 100vh;
|
||||
}
|
9
style/home.scss
Normal file
9
style/home.scss
Normal file
@ -0,0 +1,9 @@
|
||||
@import "theme.scss";
|
||||
|
||||
.home-container {
|
||||
margin-top: 0;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
@ -1,13 +1,16 @@
|
||||
@import 'playbar.scss';
|
||||
@import 'theme.scss';
|
||||
@import 'queue.scss';
|
||||
@import 'login.scss';
|
||||
@import 'signup.scss';
|
||||
@import "playbar.scss";
|
||||
@import "theme.scss";
|
||||
@import "queue.scss";
|
||||
@import "login.scss";
|
||||
@import "signup.scss";
|
||||
@import "sidebar.scss";
|
||||
@import "dashboard.scss";
|
||||
@import 'home.scss';
|
||||
|
||||
body {
|
||||
font-family: sans-serif;
|
||||
background-color: $background-color;
|
||||
color: $text-controls-color;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-family: sans-serif;
|
||||
background-color: $background-color;
|
||||
color: $text-controls-color;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
14
style/sidebar.scss
Normal file
14
style/sidebar.scss
Normal file
@ -0,0 +1,14 @@
|
||||
@import "theme.scss";
|
||||
|
||||
.sidebar-container {
|
||||
background-color: red;
|
||||
width: 27%;
|
||||
height: calc(100% - 75px);
|
||||
}
|
||||
|
||||
.sidebar-top-container {
|
||||
border-radius: 1rem;
|
||||
background-color: yellow;
|
||||
height: 20%;
|
||||
margin: 5px;
|
||||
}
|
Reference in New Issue
Block a user