Firs Commit

This commit is contained in:
2025-03-21 09:37:29 +07:00
commit b5f22f157e
98 changed files with 16210 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
html {
overflow-y: auto;
}
@media (max-width: 1279px) {
.v-main {
margin: 0 10px;
}
}
.cursor-pointer {
cursor: pointer;
}
.page-wrapper {
min-height: calc(100vh - 100px);
padding: 24px;
@media screen and (max-width: 767px) {
padding: 20px 10px;
}
}
.maxWidth {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
@media screen and (max-width: 1199px) {
padding: 0 8px !important;
}
}
.h-100vh {
height: 100vh;
}

181
scss/layout/_sidebar.scss Normal file
View File

@@ -0,0 +1,181 @@
/*This is for the logo*/
.leftSidebar {
box-shadow: none !important;
.logo {
padding-left: 7px;
}
.mini-icon {
display: none;
}
.mini-text {
display: block;
font-size: 12px !important;
font-weight: 600 !important;
letter-spacing: 1.5px !important;
text-transform: uppercase !important;
color:inherit
}
.v-list--density-default .v-list-subheader {
padding-inline-start: 0 !important;
}
}
/*This is for the Vertical sidebar*/
.scrollnavbar {
height: calc(100vh - 100px);
.userbottom {
position: fixed;
bottom: 0px;
width: 100%;
}
.smallCap {
padding: 20px 0px 10px !important;
font-size: 0.875rem;
font-weight: 500;
margin-top: 24px;
color: rgb(var(--v-theme-textPrimary));
&:first-child {
margin-top: 0 !important;
}
}
/*General Menu css*/
.v-list-group__items {
.v-list-item {
min-height: 35px !important;
padding-inline-start: calc(12px + var(--indent-padding) / 10) !important;
.v-list-item__prepend .dot {
height: 6px;
width: 6px;
background-color: rgb(var(--v-theme-textSecondary));
border-radius: 50%;
margin-inline-end: 8px !important;
}
.v-list-item-title {
font-size: 14px !important;
}
&:hover {
color: rgb(var(--v-theme-primary));
.v-list-item__prepend .dot {
background-color: rgb(var(--v-theme-primary));
}
}
&.v-list-item--active {
.v-list-item__prepend .dot {
background-color: rgb(var(--v-theme-primary));
}
}
}
}
.v-list-group__items .v-list-item,
.v-list-item {
border-radius: $border-radius-root + 4;
color: rgba(var(--v-theme-textPrimary),0.8);
margin: 0 0 2px;
&:hover {
color: rgb(var(--v-theme-primary));
}
.v-list-item__prepend {
margin-inline-end: 13px;
}
.v-list-item__append {
font-size: 15px;
.v-icon {
margin-inline-start: 13px;
}
}
.v-list-item-title {
font-size: 15px;
}
}
/*This is for the dropdown*/
.v-list {
color: rgb(var(--v-theme-textSecondary));
.v-list-subheader {
&:first-of-type {
border-top: 0;
}
border-top: 1px solid rgb(var(--v-theme-borderColor));
}
>.v-list-item.v-list-item--active,
.v-list-item--active>.v-list-item__overlay {
background: rgb(var(--v-theme-primary));
color: white;
box-shadow: 0 17px 20px -8px rgba(var(--v-theme-primary), 0.2);
}
>.v-list-group {
position: relative;
>.v-list-item--active,
>.v-list-item--active:hover {
background: rgb(var(--v-theme-primary));
color: white;
box-shadow: 0 17px 20px -8px rgba(var(--v-theme-primary), 0.2);
}
.v-list-group__items .v-list-item.v-list-item--active,
.v-list-group__items .v-list-item.v-list-item--active>.v-list-item__overlay {
background: transparent;
color: rgb(var(--v-theme-primary));
}
}
}
}
.v-list-item--density-default:not(.v-list-item--nav).v-list-item--one-line {
padding-inline: 14px;
}
.v-navigation-drawer--rail {
.scrollnavbar .v-list .v-list-group__items,
.hide-menu {
opacity: 1;
}
.leftPadding {
margin-left: 0px;
}
}
// scrollbar
.ps__rail-y {
z-index: 9;
}
.v-navigation-drawer {
box-shadow: none !important;
border-right: 0 !important;
}

56
scss/layout/_topbar.scss Normal file
View File

@@ -0,0 +1,56 @@
.v-app-bar {
.v-toolbar__content {
padding: 0 24px 0 10px;
display: flex;
gap:8px;
>.v-btn:first-child {
margin-inline-start: 0;
}
.v-btn {
&.custom-hover-primary{
.iconify{
color: rgba(var(--v-theme-textPrimary), 0.7) !important;
}
&:hover{
background-color: rgb(var(--v-theme-lightprimary)) ;
.iconify{
color: rgb(var(--v-theme-primary)) !important;
}
}
}
}
}
}
.mobile_popup{
.v-btn {
&.custom-hover-primary{
.iconify{
color: rgba(var(--v-theme-textPrimary), 0.7) !important;
}
}
}
}
.custom-text-primary {
&:hover {
.custom-title {
color: rgb(var(--v-theme-primary)) !important;
}
}
}
@media screen and (max-width:1279px) {
.mini-sidebar {
.v-navigation-drawer.v-navigation-drawer--left {
width: 260px !important;
}
}
}