generated from alphane/template
Compare commits
3 Commits
3468df3782
...
9dfee98b84
| Author | SHA1 | Date | |
|---|---|---|---|
| 9dfee98b84 | |||
| d33aef1680 | |||
| a0d5a7ec68 |
@@ -46,7 +46,7 @@
|
||||
<div class="mr-3">
|
||||
<!-- <AppLogo /> -->
|
||||
<PublicAppLogo
|
||||
to="/dashboard"
|
||||
to="/"
|
||||
:animated="false"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -106,9 +106,9 @@
|
||||
<v-btn
|
||||
variant="outlined"
|
||||
block
|
||||
text="Logout"
|
||||
@click="signOut"
|
||||
>Logout</v-btn
|
||||
>
|
||||
/>
|
||||
</div>
|
||||
</v-sheet>
|
||||
</v-menu>
|
||||
|
||||
@@ -1,4 +1,28 @@
|
||||
<template>
|
||||
<div v-if="mobile">
|
||||
<v-app-bar
|
||||
id="top"
|
||||
elevation="6"
|
||||
height="60"
|
||||
class="main-head pl-2"
|
||||
>
|
||||
<div class="mr-3">
|
||||
<PublicAppLogo to="/" />
|
||||
</div>
|
||||
|
||||
<v-spacer />
|
||||
|
||||
<ProfileMenu v-if="isAuthenticated" />
|
||||
<v-btn
|
||||
v-else
|
||||
color="primary"
|
||||
variant="tonal"
|
||||
text="Sign in"
|
||||
:to="{ name: 'SignInPage' }"
|
||||
/>
|
||||
</v-app-bar>
|
||||
</div>
|
||||
<div v-else>
|
||||
<v-app-bar
|
||||
id="top"
|
||||
elevation="6"
|
||||
@@ -13,15 +37,31 @@
|
||||
</div>
|
||||
|
||||
<v-spacer />
|
||||
|
||||
<ProfileMenu v-if="isAuthenticated" />
|
||||
<v-btn
|
||||
v-else
|
||||
color="primary"
|
||||
variant="tonal"
|
||||
text="Sign in"
|
||||
:to="{ name: 'SignInPage' }"
|
||||
/>
|
||||
</v-app-bar>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { computed } from "vue"
|
||||
import { useRoute } from "vue-router"
|
||||
import { useDisplay } from "vuetify"
|
||||
import { useAuth0 } from "@auth0/auth0-vue"
|
||||
|
||||
import ProfileMenu from "@/components/layout/ProfileMenu.vue"
|
||||
import PublicAppLogo from "@/components/common/PublicAppLogo.vue"
|
||||
|
||||
const route = useRoute()
|
||||
const isHomePage = computed(() => route.name === "HomePage")
|
||||
|
||||
const { mobile } = useDisplay()
|
||||
const { isAuthenticated } = useAuth0()
|
||||
</script>
|
||||
|
||||
@@ -1 +1,28 @@
|
||||
<template><div></div></template>
|
||||
<template>
|
||||
<div>
|
||||
<v-row>
|
||||
<v-col
|
||||
cols="12"
|
||||
sm="6"
|
||||
md="4"
|
||||
lg="2"
|
||||
>
|
||||
<AppCard
|
||||
v-if="isAuthenticated"
|
||||
:to="{ name: 'DashboardPage' }"
|
||||
elevation="6"
|
||||
>
|
||||
You are signed in. Go to Dashboard
|
||||
</AppCard>
|
||||
</v-col>
|
||||
</v-row>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { useAuth0 } from "@auth0/auth0-vue"
|
||||
|
||||
import AppCard from "@/components/common/AppCard.vue"
|
||||
|
||||
const { isAuthenticated } = useAuth0()
|
||||
</script>
|
||||
|
||||
@@ -16,17 +16,7 @@
|
||||
class="px-8"
|
||||
style="max-width: 500px"
|
||||
>
|
||||
<!-- <img
|
||||
class="d-inline-block d-lg-none"
|
||||
src="@/assets/app_logo_small.png"
|
||||
style="height: 66px; transform: rotate(-12deg)"
|
||||
/> -->
|
||||
<h2
|
||||
class="text-h1 textPrimary font-weight-semibold mb-0"
|
||||
style="font-size: 2.5rem !important"
|
||||
>
|
||||
{{ APPLICATION_NAME }}
|
||||
</h2>
|
||||
<PublicAppLogo />
|
||||
<h6 class="text-h6 text-medium-emphasis d-flex align-center mt-6 font-weight-medium">
|
||||
<v-btn
|
||||
block
|
||||
@@ -37,10 +27,6 @@
|
||||
</h6>
|
||||
|
||||
<!--
|
||||
<div class="my-6 text-medium-emphasis">
|
||||
If you don't have an account, create one to get started using ROTYR. It's free to sign
|
||||
up and only takes a few seconds.
|
||||
</div>
|
||||
<v-btn
|
||||
block
|
||||
variant="outlined"
|
||||
@@ -63,20 +49,6 @@
|
||||
</div>
|
||||
</div>
|
||||
</v-col>
|
||||
<!-- <v-col
|
||||
cols="12"
|
||||
lg="7"
|
||||
xl="8"
|
||||
class="d-none d-lg-flex align-center justify-center authentication position-relative"
|
||||
>
|
||||
<div class="text-center">
|
||||
<img
|
||||
src="@/assets/app_logo_splash.png"
|
||||
class="position-relative"
|
||||
style="opacity: 0.15; width: 80%"
|
||||
/>
|
||||
</div>
|
||||
</v-col> -->
|
||||
</v-row>
|
||||
</div>
|
||||
</template>
|
||||
@@ -85,7 +57,7 @@
|
||||
import { onMounted } from "vue"
|
||||
import { useAuth0 } from "@auth0/auth0-vue"
|
||||
|
||||
import { APPLICATION_NAME } from "@/config"
|
||||
import PublicAppLogo from "@/components/common/PublicAppLogo.vue"
|
||||
import useCurrentUser from "@/use/use-current-user"
|
||||
|
||||
const { reset: resetCurrentUser } = useCurrentUser()
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
|
||||
.v-breadcrumbs{
|
||||
.v-breadcrumbs-divider{
|
||||
.v-breadcrumbs {
|
||||
.v-breadcrumbs-divider {
|
||||
padding: 0 0 !important;
|
||||
}
|
||||
.v-breadcrumbs-item--link{
|
||||
.v-breadcrumbs-item--link {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,18 +5,18 @@
|
||||
.v-btn-group {
|
||||
border-color: rgb(var(--v-theme-borderColor)) !important;
|
||||
}
|
||||
.v-btn{
|
||||
.v-btn {
|
||||
text-transform: capitalize;
|
||||
letter-spacing: 0;
|
||||
border-radius: 30px;
|
||||
|
||||
&.v-btn--variant-elevated{
|
||||
&.v-btn--variant-elevated {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
.v-btn--slim{
|
||||
.v-btn--slim {
|
||||
padding: 0 15px;
|
||||
}
|
||||
}
|
||||
.v-btn--elevated:hover{
|
||||
.v-btn--elevated:hover {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
@@ -27,13 +27,14 @@
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
.v-timeline-divider__before,.v-timeline-divider__after {
|
||||
.v-timeline-divider__before,
|
||||
.v-timeline-divider__after {
|
||||
background: rgba(var(--v-border-color), 1);
|
||||
}
|
||||
.v-card-text{
|
||||
.v-card-text {
|
||||
padding: 24px 24px;
|
||||
}
|
||||
.v-card-item{
|
||||
.v-card-item {
|
||||
padding: 24px 24px;
|
||||
}
|
||||
}
|
||||
@@ -46,24 +47,24 @@
|
||||
}
|
||||
}
|
||||
|
||||
.elevation-o-card{
|
||||
.v-card-item{
|
||||
.elevation-o-card {
|
||||
.v-card-item {
|
||||
padding: 0.625rem 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.card-title{
|
||||
.card-title {
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
color:rgb(var(--v-theme-textPrimary));
|
||||
color: rgb(var(--v-theme-textPrimary));
|
||||
}
|
||||
.card-subtitle{
|
||||
.card-subtitle {
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
color:rgb(var(--v-theme-textSecondary));
|
||||
color: rgb(var(--v-theme-textSecondary));
|
||||
}
|
||||
.dark-card-title{
|
||||
.dark-card-title {
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
color:rgb(var(--v-theme-textPrimary));
|
||||
color: rgb(var(--v-theme-textPrimary));
|
||||
}
|
||||
@@ -1,7 +1,5 @@
|
||||
.v-table {
|
||||
|
||||
&.datatabels {
|
||||
|
||||
&.productlist {
|
||||
.v-data-table-header__content span {
|
||||
color: rgb(var(--v-theme-textPrimary));
|
||||
@@ -24,26 +22,20 @@
|
||||
tbody tr td:first-child {
|
||||
padding-left: 0px !important;
|
||||
}
|
||||
tbody tr td{
|
||||
tbody tr td {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.v-selection-control--dirty .v-selection-control__input>.v-icon {
|
||||
.v-selection-control--dirty .v-selection-control__input > .v-icon {
|
||||
color: rgb(var(--v-theme-primary));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@media screen and (max-width:1368px) {
|
||||
|
||||
@media screen and (max-width: 1368px) {
|
||||
.v-table {
|
||||
|
||||
&.datatabels {
|
||||
|
||||
&.productlist {
|
||||
.v-data-table-header__content span {
|
||||
color: rgb(var(--v-theme-textPrimary));
|
||||
@@ -52,7 +44,6 @@
|
||||
table {
|
||||
tbody {
|
||||
tr {
|
||||
|
||||
td {
|
||||
padding: 14px 5px !important;
|
||||
|
||||
@@ -75,13 +66,9 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.v-pagination {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
.v-expansion-panel-title__overlay{
|
||||
.v-expansion-panel-title__overlay {
|
||||
background: rgba(var(--v-theme-primary));
|
||||
}
|
||||
.v-expansion-panel:not(:first-child)::after {
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
|
||||
.v-field--active .v-label.v-field-label{
|
||||
.v-field--active .v-label.v-field-label {
|
||||
color: rgb(var(--v-theme-textPrimary));
|
||||
}
|
||||
@@ -1,10 +1,11 @@
|
||||
.v-time-picker-clock{
|
||||
background: rgb(var(--v-theme-grey100)) ;
|
||||
.v-time-picker-clock {
|
||||
background: rgb(var(--v-theme-grey100));
|
||||
}
|
||||
.v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default{
|
||||
.v-time-picker-controls__ampm__btn.v-btn.v-btn--density-default {
|
||||
border: 0 !important;
|
||||
}
|
||||
.v-stepper-header,.v-stepper.v-sheet{
|
||||
.v-stepper-header,
|
||||
.v-stepper.v-sheet {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
|
||||
@@ -17,18 +17,18 @@
|
||||
.v-list-item__overlay {
|
||||
background-color: rgb(var(--v-theme-hoverColor));
|
||||
}
|
||||
.v-list-item.v-list-item--active{
|
||||
.v-list-item__overlay{
|
||||
.v-list-item.v-list-item--active {
|
||||
.v-list-item__overlay {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.mail-items{
|
||||
.mail-items {
|
||||
min-height: 40px !important;
|
||||
margin-bottom: 5px !important;
|
||||
}
|
||||
}
|
||||
|
||||
.v-list-item-title{
|
||||
.v-list-item-title {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@@ -8,26 +8,26 @@
|
||||
box-shadow: $box-shadow !important;
|
||||
}
|
||||
.elevation-1 {
|
||||
box-shadow:0px 12px 30px -2px rgba(58,75,116,0.14) !important
|
||||
box-shadow: 0px 12px 30px -2px rgba(58, 75, 116, 0.14) !important;
|
||||
}
|
||||
.elevation-2 {
|
||||
box-shadow:0px 24px 24px -12px rgba(0, 0, 0, .05) !important
|
||||
box-shadow: 0px 24px 24px -12px rgba(0, 0, 0, 0.05) !important;
|
||||
}
|
||||
.elevation-3 {
|
||||
box-shadow: rgba(145,158,171,0.2) 0px 0px 2px 0px, rgba(145,158,171,0.12) 0px 12px 24px -4px !important;
|
||||
box-shadow:
|
||||
rgba(145, 158, 171, 0.2) 0px 0px 2px 0px,
|
||||
rgba(145, 158, 171, 0.12) 0px 12px 24px -4px !important;
|
||||
}
|
||||
.elevation-4{
|
||||
box-shadow: 0px 12px 12px -6px rgba(0,0,0,0.15) !important;
|
||||
.elevation-4 {
|
||||
box-shadow: 0px 12px 12px -6px rgba(0, 0, 0, 0.15) !important;
|
||||
}
|
||||
.elevation-5
|
||||
{
|
||||
box-shadow: 1px 0 7px rgba(0, 0, 0, .05)!important;
|
||||
.elevation-5 {
|
||||
box-shadow: 1px 0 7px rgba(0, 0, 0, 0.05) !important;
|
||||
}
|
||||
|
||||
.primary-shadow {
|
||||
box-shadow: rgba(var(--v-theme-primary), 0.30) 0px 12px 14px 0px;
|
||||
box-shadow: rgba(var(--v-theme-primary), 0.3) 0px 12px 14px 0px;
|
||||
&:hover {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar, .v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
||||
.v-stepper-item--selected .v-stepper-item__avatar.v-avatar,
|
||||
.v-stepper-item--complete .v-stepper-item__avatar.v-avatar {
|
||||
background: rgb(var(--v-theme-primary)) !important;
|
||||
}
|
||||
|
||||
|
||||
@@ -4,36 +4,33 @@
|
||||
border-bottom: thin solid rgba(var(--v-border-color)) !important;
|
||||
}
|
||||
|
||||
.v-data-table{
|
||||
th.v-data-table__th{
|
||||
font-size:16px;
|
||||
.v-data-table {
|
||||
th.v-data-table__th {
|
||||
font-size: 16px;
|
||||
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
||||
}
|
||||
td.v-data-table__td{
|
||||
td.v-data-table__td {
|
||||
font-size: 14px;
|
||||
text-wrap: nowrap;
|
||||
}
|
||||
.v-data-table-footer{
|
||||
.v-data-table-footer {
|
||||
padding: 15px 8px;
|
||||
}
|
||||
.v-data-table-header__sort-badge{
|
||||
background-color:rgb(var(--v-theme-borderColor)) !important;
|
||||
.v-data-table-header__sort-badge {
|
||||
background-color: rgb(var(--v-theme-borderColor)) !important;
|
||||
}
|
||||
.tdhead{
|
||||
font-size:16px;
|
||||
.tdhead {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width:767px) {
|
||||
.v-data-table-footer{
|
||||
@media screen and (max-width: 767px) {
|
||||
.v-data-table-footer {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
.v-table {
|
||||
|
||||
|
||||
&.ticket-table {
|
||||
|
||||
table {
|
||||
thead {
|
||||
th {
|
||||
@@ -43,14 +40,12 @@
|
||||
|
||||
tbody {
|
||||
tr {
|
||||
|
||||
td {
|
||||
padding: 16px 16px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
&.invoice-table {
|
||||
@@ -68,13 +63,11 @@
|
||||
&:last-child {
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
tbody {
|
||||
tr {
|
||||
|
||||
td {
|
||||
padding: 8px 24px !important;
|
||||
|
||||
@@ -90,10 +83,5 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -7,7 +7,6 @@
|
||||
min-width: auto !important;
|
||||
&.v-slide-group-item--active {
|
||||
background: rgb(var(--v-theme-primary));
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,4 +10,3 @@
|
||||
background-color: rgba(0, 0, 0, 0.025);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -37,13 +37,11 @@
|
||||
height: 25px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
&:before {
|
||||
background-repeat: no-repeat;
|
||||
content: '';
|
||||
content: "";
|
||||
position: absolute;
|
||||
background-image: url('@/assets/images/front-pages/background/left-shape.png');
|
||||
background-image: url("@/assets/images/front-pages/background/left-shape.png");
|
||||
bottom: 0;
|
||||
height: 40px;
|
||||
left: 0;
|
||||
@@ -52,9 +50,9 @@
|
||||
|
||||
&:after {
|
||||
background-repeat: no-repeat;
|
||||
content: '';
|
||||
content: "";
|
||||
position: absolute;
|
||||
background-image: url('@/assets/images/front-pages/background/right-shape.png');
|
||||
background-image: url("@/assets/images/front-pages/background/right-shape.png");
|
||||
bottom: 0;
|
||||
right: 17%;
|
||||
width: 325px;
|
||||
@@ -78,7 +76,6 @@
|
||||
animation: marquee2 45s linear infinite;
|
||||
}
|
||||
|
||||
|
||||
@keyframes slide {
|
||||
0% {
|
||||
transform: translate3d(0, 0, 0);
|
||||
@@ -101,11 +98,11 @@
|
||||
|
||||
@keyframes marquee2 {
|
||||
0% {
|
||||
transform: translate3d(-2086px, 0, 0)
|
||||
transform: translate3d(-2086px, 0, 0);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate3d(0, 0, 0)
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -130,7 +127,6 @@
|
||||
img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -144,8 +140,8 @@
|
||||
.intro {
|
||||
opacity: 0;
|
||||
bottom: 16px;
|
||||
inset-inline-start: .75rem;
|
||||
inset-inline-end: .75rem;
|
||||
inset-inline-start: 0.75rem;
|
||||
inset-inline-end: 0.75rem;
|
||||
transition: 0.5s;
|
||||
}
|
||||
}
|
||||
@@ -157,19 +153,17 @@
|
||||
padding-bottom: 56px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.v-btn {
|
||||
background-color: rgba(var(--v-theme-surface));
|
||||
padding: 16px 24px;
|
||||
border-radius: 12px !important;
|
||||
font-size: 16px;
|
||||
box-shadow: 0px 24px 24px -12px rgba(0, 0, 0, .05);
|
||||
box-shadow: 0px 24px 24px -12px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.v-tab--selected {
|
||||
background-color: rgba(var(--v-theme-primary));
|
||||
box-shadow: 0px 24px 24px -12px rgba(99, 91, 255, .15);
|
||||
box-shadow: 0px 24px 24px -12px rgba(99, 91, 255, 0.15);
|
||||
|
||||
.v-btn__content {
|
||||
color: #fff;
|
||||
@@ -185,7 +179,6 @@
|
||||
&.max-width-1218 {
|
||||
max-width: 1218px !important;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.v-container {
|
||||
@@ -220,7 +213,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.feature-tabs {
|
||||
.v-tab__slider {
|
||||
top: 0;
|
||||
@@ -233,7 +225,6 @@
|
||||
}
|
||||
|
||||
.feature-tabs-expansion {
|
||||
|
||||
.v-expansion-panel-text__wrapper {
|
||||
padding: 0px 0px 16px;
|
||||
}
|
||||
@@ -247,7 +238,7 @@
|
||||
}
|
||||
|
||||
.v-expansion-panel--active:not(:first-child),
|
||||
.v-expansion-panel--active+.v-expansion-panel {
|
||||
.v-expansion-panel--active + .v-expansion-panel {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
@@ -270,7 +261,7 @@
|
||||
margin: 0;
|
||||
transform: none;
|
||||
display: flex;
|
||||
justify-content: center
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.carousel__next {
|
||||
@@ -278,7 +269,6 @@
|
||||
width: 48px;
|
||||
border-radius: 50%;
|
||||
background: rgb(var(--v-theme-lightprimary));
|
||||
|
||||
}
|
||||
|
||||
.carousel__prev {
|
||||
@@ -302,7 +292,6 @@
|
||||
}
|
||||
|
||||
.testimonials {
|
||||
|
||||
.carousel__prev,
|
||||
.carousel__next {
|
||||
width: 100%;
|
||||
@@ -367,32 +356,40 @@
|
||||
.v-expansion-panel-title__icon {
|
||||
.v-icon {
|
||||
font-size: 20px;
|
||||
opacity: 0.5
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
.v-expansion-panels:not(.v-expansion-panels--variant-accordion)> :first-child:not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
||||
.v-expansion-panels:not(.v-expansion-panels--variant-accordion)
|
||||
> :first-child:not(:last-child):not(.v-expansion-panel--active):not(
|
||||
.v-expansion-panel--before-active
|
||||
) {
|
||||
border-bottom-left-radius: 8px !important;
|
||||
border-bottom-right-radius: 8px !important;
|
||||
}
|
||||
|
||||
.v-expansion-panels:not(.v-expansion-panels--variant-accordion)> :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--after-active) {
|
||||
.v-expansion-panels:not(.v-expansion-panels--variant-accordion)
|
||||
> :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(
|
||||
.v-expansion-panel--after-active
|
||||
) {
|
||||
border-top-left-radius: 8px !important;
|
||||
border-top-right-radius: 8px !important;
|
||||
}
|
||||
|
||||
.v-expansion-panels:not(.v-expansion-panels--variant-accordion)> :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(.v-expansion-panel--before-active) {
|
||||
.v-expansion-panels:not(.v-expansion-panels--variant-accordion)
|
||||
> :not(:first-child):not(:last-child):not(.v-expansion-panel--active):not(
|
||||
.v-expansion-panel--before-active
|
||||
) {
|
||||
border-bottom-left-radius: 8px !important;
|
||||
border-bottom-right-radius: 8px !important;
|
||||
}
|
||||
|
||||
.v-expansion-panel--active:not(:first-child),
|
||||
.v-expansion-panel--active+.v-expansion-panel {
|
||||
.v-expansion-panel--active + .v-expansion-panel {
|
||||
margin-top: 0px !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.animted-img {
|
||||
position: absolute;
|
||||
z-index: 9;
|
||||
@@ -452,8 +449,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.v-btn--size-default {
|
||||
&.nav-links {
|
||||
font-size: $font-size-root !important;
|
||||
@@ -468,8 +463,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
.light-primary {
|
||||
background-color: rgb(var(--v-theme-primary), 0.1);
|
||||
}
|
||||
@@ -477,14 +470,13 @@
|
||||
.announce-close {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
|
||||
}
|
||||
|
||||
.text-align-start{
|
||||
.text-align-start {
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
@media screen and (max-width:1199px) {
|
||||
@media screen and (max-width: 1199px) {
|
||||
.ps-96 {
|
||||
padding-inline-start: 60px !important;
|
||||
}
|
||||
@@ -507,10 +499,9 @@
|
||||
.offerbar:before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (max-width:1024px) {
|
||||
@media screen and (max-width: 1024px) {
|
||||
.front-wraper .testimonials .slide-counter {
|
||||
left: 67px;
|
||||
}
|
||||
@@ -527,8 +518,6 @@
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.front-wraper .our-template .carousel__viewport {
|
||||
margin: 0 0px;
|
||||
}
|
||||
@@ -537,16 +526,15 @@
|
||||
padding-inline-start: 20px !important;
|
||||
padding-inline-end: 20px !important;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media screen and (max-width:991px) {
|
||||
.text-align-start{
|
||||
@media screen and (max-width: 991px) {
|
||||
.text-align-start {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width:767px) {
|
||||
@media screen and (max-width: 767px) {
|
||||
.technology {
|
||||
.round-54 {
|
||||
height: 45px;
|
||||
@@ -593,5 +581,4 @@
|
||||
opacity: 1 !important;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,14 +1,12 @@
|
||||
@use "../variables" as *;
|
||||
|
||||
.front-lp-header {
|
||||
|
||||
.v-toolbar{
|
||||
.v-toolbar {
|
||||
background: rgb(var(--v-theme-surface));
|
||||
}
|
||||
|
||||
&.v-app-bar .v-toolbar__content {
|
||||
padding: 0;
|
||||
|
||||
}
|
||||
|
||||
.v-toolbar__content {
|
||||
@@ -31,18 +29,15 @@
|
||||
transition: 0.5s;
|
||||
background-color: rgba(var(--v-theme-surface)) !important;
|
||||
box-shadow: 0 4px 29px -11px #3a4b7424 !important;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
//
|
||||
// mega menu
|
||||
//
|
||||
.white-btn{
|
||||
background-color: #769CFF;
|
||||
.white-btn {
|
||||
background-color: #769cff;
|
||||
}
|
||||
.front_wrapper {
|
||||
|
||||
&.v-menu .v-overlay__content {
|
||||
margin: 0 auto;
|
||||
left: 0 !important;
|
||||
@@ -50,7 +45,7 @@
|
||||
}
|
||||
.megamenu {
|
||||
&::before {
|
||||
content: '';
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
html {
|
||||
overflow-y: auto;
|
||||
}
|
||||
.v-main{
|
||||
background:rgb(var(--v-theme-background)) !important; ;
|
||||
.v-main {
|
||||
background: rgb(var(--v-theme-background)) !important;
|
||||
}
|
||||
@media (max-width: 1279px) {
|
||||
.v-main {
|
||||
|
||||
@@ -71,8 +71,12 @@
|
||||
background: #fa896b;
|
||||
}
|
||||
|
||||
|
||||
.DARK_BLUE_THEME, .DARK_AQUA_THEME, .DARK_ORANGE_THEME, .DARK_PURPLE_THEME, .DARK_GREEN_THEME, .DARK_CYAN_THEME {
|
||||
.DARK_BLUE_THEME,
|
||||
.DARK_AQUA_THEME,
|
||||
.DARK_ORANGE_THEME,
|
||||
.DARK_PURPLE_THEME,
|
||||
.DARK_GREEN_THEME,
|
||||
.DARK_CYAN_THEME {
|
||||
.togglethemeBlue {
|
||||
display: block !important;
|
||||
}
|
||||
@@ -82,7 +86,12 @@
|
||||
}
|
||||
}
|
||||
|
||||
.BLUE_THEME, .AQUA_THEME, .ORANGE_THEME, .PURPLE_THEME, .GREEN_THEME, .CYAN_THEME {
|
||||
.BLUE_THEME,
|
||||
.AQUA_THEME,
|
||||
.ORANGE_THEME,
|
||||
.PURPLE_THEME,
|
||||
.GREEN_THEME,
|
||||
.CYAN_THEME {
|
||||
.togglethemeDarkBlue {
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
|
||||
// border
|
||||
.border-bottom {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .05);
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.opacity-1 {
|
||||
@@ -55,7 +55,9 @@ body {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="file"]):not([type="range"]):not([type="color"]),
|
||||
input:not([type="checkbox"]):not([type="radio"]):not([type="button"]):not([type="submit"]):not(
|
||||
[type="reset"]
|
||||
):not([type="file"]):not([type="range"]):not([type="color"]),
|
||||
textarea,
|
||||
[contenteditable="true"] {
|
||||
cursor: text;
|
||||
@@ -82,7 +84,7 @@ input[type="time"]::-webkit-calendar-picker-indicator {
|
||||
margin: 0 auto;
|
||||
box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075);
|
||||
|
||||
input[type=file] {
|
||||
input[type="file"] {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
@@ -95,14 +97,14 @@ input[type="time"]::-webkit-calendar-picker-indicator {
|
||||
.bg-transparent {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
.bg-dark{
|
||||
background-color: rgba(0, 0, 0, .08);
|
||||
.bg-dark {
|
||||
background-color: rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
.bg-white-opacity{
|
||||
.bg-white-opacity {
|
||||
background-color: rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
|
||||
@media screen and (max-width:1368px) and (min-width:1200px) {
|
||||
@media screen and (max-width: 1368px) and (min-width: 1200px) {
|
||||
.space-20 {
|
||||
padding: 30px 20px !important;
|
||||
}
|
||||
|
||||
@@ -8,8 +8,6 @@
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.bg-img-1 {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
@@ -83,7 +81,6 @@
|
||||
margin-right: 12px;
|
||||
}
|
||||
|
||||
|
||||
.ml-5 {
|
||||
margin-left: unset !important;
|
||||
margin-right: 20px;
|
||||
@@ -162,7 +159,7 @@
|
||||
justify-content: flex-end !important;
|
||||
}
|
||||
|
||||
.vertical-table .v-table>.v-table__wrapper>table>tbody>tr>th {
|
||||
.vertical-table .v-table > .v-table__wrapper > table > tbody > tr > th {
|
||||
border-left: thin solid rgba(var(--v-border-color), 1) !important;
|
||||
}
|
||||
|
||||
@@ -205,7 +202,7 @@
|
||||
}
|
||||
|
||||
//RTL mode minisidebar hover to active scrollbar
|
||||
.ps--active-y>.ps__rail-y {
|
||||
.ps--active-y > .ps__rail-y {
|
||||
right: unset !important;
|
||||
left: 0;
|
||||
}
|
||||
@@ -230,7 +227,6 @@
|
||||
}
|
||||
|
||||
@media (min-width: 960px) {
|
||||
|
||||
.horizontal-navbar .ddLevel-2,
|
||||
.horizontal-navbar .ddLevel-3 {
|
||||
top: -5px;
|
||||
@@ -255,7 +251,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width:1279px) {
|
||||
@media screen and (max-width: 1279px) {
|
||||
.mini-sidebar {
|
||||
.v-navigation-drawer.v-navigation-drawer--right {
|
||||
width: 270px !important;
|
||||
@@ -265,7 +261,6 @@
|
||||
width: 320px !important;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.rtlImg {
|
||||
@@ -322,7 +317,6 @@
|
||||
.rtlnav {
|
||||
transform: scaleX(-1);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -337,5 +331,4 @@
|
||||
left: unset;
|
||||
right: 14px;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,34 +1,34 @@
|
||||
$sizes: (
|
||||
'display-1': 44px,
|
||||
'display-2': 40px,
|
||||
'display-3': 30px,
|
||||
'h1': 36px,
|
||||
'h2': 30px,
|
||||
'h3': 21px,
|
||||
'h4': 18px,
|
||||
'h5': 16px,
|
||||
'h6': 14px,
|
||||
'text-10': 10px,
|
||||
'text-12': 12px,
|
||||
'text-13': 13px,
|
||||
'text-14': 14px,
|
||||
'text-15': 15px,
|
||||
'text-16': 16px,
|
||||
'text-17': 17px,
|
||||
'text-18': 18px,
|
||||
'text-20': 20px,
|
||||
'text-22': 22px,
|
||||
'text-24': 24px,
|
||||
'text-28': 28px,
|
||||
'text-34': 34px,
|
||||
'text-40': 40px,
|
||||
'text-44': 44px,
|
||||
'text-48': 48px,
|
||||
'text-50': 50px,
|
||||
'text-52': 52px,
|
||||
'text-56': 56px,
|
||||
'text-64': 64px,
|
||||
'body-text-1': 10px
|
||||
"display-1": 44px,
|
||||
"display-2": 40px,
|
||||
"display-3": 30px,
|
||||
"h1": 36px,
|
||||
"h2": 30px,
|
||||
"h3": 21px,
|
||||
"h4": 18px,
|
||||
"h5": 16px,
|
||||
"h6": 14px,
|
||||
"text-10": 10px,
|
||||
"text-12": 12px,
|
||||
"text-13": 13px,
|
||||
"text-14": 14px,
|
||||
"text-15": 15px,
|
||||
"text-16": 16px,
|
||||
"text-17": 17px,
|
||||
"text-18": 18px,
|
||||
"text-20": 20px,
|
||||
"text-22": 22px,
|
||||
"text-24": 24px,
|
||||
"text-28": 28px,
|
||||
"text-34": 34px,
|
||||
"text-40": 40px,
|
||||
"text-44": 44px,
|
||||
"text-48": 48px,
|
||||
"text-50": 50px,
|
||||
"text-52": 52px,
|
||||
"text-56": 56px,
|
||||
"text-64": 64px,
|
||||
"body-text-1": 10px,
|
||||
);
|
||||
|
||||
@each $pixel, $size in $sizes {
|
||||
@@ -39,15 +39,15 @@ $sizes: (
|
||||
}
|
||||
|
||||
$height: (
|
||||
'h-10': 10px,
|
||||
'h-12': 12px,
|
||||
'h-15': 15px,
|
||||
"h-10": 10px,
|
||||
"h-12": 12px,
|
||||
"h-15": 15px,
|
||||
);
|
||||
|
||||
@each $pixel, $size in $height {
|
||||
.#{$pixel} {
|
||||
height: $size;
|
||||
width: $size ;
|
||||
width: $size;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -64,7 +64,7 @@ $height: (
|
||||
.lh-md {
|
||||
line-height: 1.57;
|
||||
}
|
||||
.lh-normal{
|
||||
.lh-normal {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
> .v-btn:first-child {
|
||||
margin-inline-start: 0;
|
||||
}
|
||||
.v-btn {
|
||||
color: rgba(var(--v-theme-textsurface)) !important;
|
||||
}
|
||||
// .v-btn {
|
||||
// color: rgba(var(--v-theme-textsurface)) !important;
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
@media screen and (max-width:1279px) {
|
||||
@media screen and (max-width: 1279px) {
|
||||
.mini-sidebar {
|
||||
.v-navigation-drawer.v-navigation-drawer--left {
|
||||
width: 270px !important;
|
||||
@@ -31,7 +31,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.notify {
|
||||
position: relative;
|
||||
top: -20px;
|
||||
@@ -66,9 +65,9 @@
|
||||
background-color: rgb(var(--v-theme-error));
|
||||
position: absolute;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes heartbit {
|
||||
@keyframes heartbit {
|
||||
0% {
|
||||
transform: scale(0);
|
||||
opacity: 0;
|
||||
@@ -93,15 +92,15 @@
|
||||
transform: scale(1);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.v-menu.mobile_popup .v-overlay__content {
|
||||
.v-menu.mobile_popup .v-overlay__content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media (max-width: 1199px) {
|
||||
.main-head{
|
||||
&.v-app-bar .v-toolbar__content{
|
||||
@media (max-width: 1199px) {
|
||||
.main-head {
|
||||
&.v-app-bar .v-toolbar__content {
|
||||
width: 100%;
|
||||
justify-content: space-between;
|
||||
padding: 0 10px;
|
||||
|
||||
@@ -46,7 +46,6 @@
|
||||
}
|
||||
|
||||
tr.month-item-hover {
|
||||
|
||||
td {
|
||||
padding-top: 12px !important;
|
||||
padding-bottom: 12px !important;
|
||||
@@ -58,18 +57,14 @@
|
||||
border-left: 4px solid rgba(var(--v-theme-primary)) !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
.no-line {
|
||||
|
||||
.v-table .v-table__wrapper>table>tbody>tr:not(:last-child)>td {
|
||||
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td {
|
||||
border-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.v-table .v-table__wrapper>table>tbody>tr>td {
|
||||
.v-table .v-table__wrapper > table > tbody > tr > td {
|
||||
padding: 12px;
|
||||
}
|
||||
}
|
||||
@@ -81,7 +76,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.chip-label {
|
||||
width: 80px;
|
||||
justify-content: center;
|
||||
@@ -121,9 +115,7 @@ body {
|
||||
}
|
||||
|
||||
.profile-activity {
|
||||
|
||||
.v-tab {
|
||||
|
||||
&.v-btn {
|
||||
border: 1px dashed rgba(var(--v-theme-borderColor));
|
||||
border-radius: 8px;
|
||||
@@ -136,15 +128,14 @@ body {
|
||||
display: block;
|
||||
}
|
||||
|
||||
&.v-tab--selected{
|
||||
&.v-tab--selected {
|
||||
border: 1px solid rgba(var(--v-theme-borderColor));
|
||||
border-bottom: 2px solid;
|
||||
}
|
||||
.v-tab__slider{
|
||||
.v-tab__slider {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.v-slide-group__content {
|
||||
@@ -187,7 +178,6 @@ body {
|
||||
padding-bottom: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.progress-cards {
|
||||
@@ -197,8 +187,8 @@ body {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
@media screen and (max-width:991px) {
|
||||
border-inline-end: 0 !important
|
||||
@media screen and (max-width: 991px) {
|
||||
border-inline-end: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -210,16 +200,15 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.earning-cards {
|
||||
@media screen and (max-width:991px){
|
||||
.w-25{
|
||||
@media screen and (max-width: 991px) {
|
||||
.w-25 {
|
||||
width: 100% !important;
|
||||
&.border-e{
|
||||
&.border-e {
|
||||
border: 0 !important;
|
||||
}
|
||||
.mobile-border{
|
||||
border-bottom:1px solid rgba(var(--v-theme-borderColor));
|
||||
.mobile-border {
|
||||
border-bottom: 1px solid rgba(var(--v-theme-borderColor));
|
||||
padding-bottom: 8px !important;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
pre {
|
||||
background: #0d0d0d;
|
||||
color: #fff;
|
||||
font-family: 'JetBrainsMono', monospace;
|
||||
font-family: "JetBrainsMono", monospace;
|
||||
padding: 0.75rem 1rem;
|
||||
border-radius: 0.5rem;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user