You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/resources/sass/app.scss

41 lines
622 B
SCSS

// Fonts
@import 'vazirmatn/Vazirmatn-font-face.css';
@import "remixicon/fonts/remixicon.css";
// Variables
@import 'variables';
// Bootstrap
@import 'bootstrap/scss/bootstrap';
*{
padding: 0;
margin: 0;
}
body{
min-height: 100vh;
overflow-x: hidden;
cursor: default;
}
a{
text-decoration: none !important;
}
#panel{
display: grid;
grid-template-columns:50px 0 1fr;
transition: 400ms;
&.sided{
grid-template-columns:50px 250px 1fr;
#sidebar-panel{
display: block;
}
}
}
@import "common";
@import "raw";
@import "fix";
@import "navbar";