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

77 lines
1.3 KiB
SCSS

3 days ago
@use "sass:color";
// Fonts
3 days ago
@use 'vazirmatn/Vazirmatn-font-face.css';
@use "remixicon/fonts/remixicon.css";
@use "vue-toast-notification/dist/theme-bootstrap.css";
// Variables
3 days ago
@use 'panel/variables';
@use "panel/common";
@use "panel/raw";
@use "panel/fix";
@use "panel/navbar";
@use "panel/breadcrumbs";
@use "panel/item-list";
@use "panel/steps";
// Bootstrap
//@import 'bootstrap/scss/bootstrap';
10 months ago
/* width */
::-webkit-scrollbar {
width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
background: #282c34;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: darkred;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: var(--bs-indigo);
}
*{
padding: 0;
margin: 0;
font-family: 'Vazirmatn', sans-serif;
}
html {
scroll-behavior: smooth;
}
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;
min-height: calc(100vh - 60px);
>aside{
background-image: url("../images/pattern.png");
3 days ago
background-color: color.adjust(variables.$body-bg, $lightness: 7%);
position: relative;
}
&.sided{
grid-template-columns:50px 250px 1fr;
#sidebar-panel{
display: block;
}
}
}