Skip to content

Commit

Permalink
fix mix frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
BuyOwnEx committed May 31, 2021
1 parent 8ccafa1 commit e85d386
Show file tree
Hide file tree
Showing 199 changed files with 86,367 additions and 206,142 deletions.
184,469 changes: 0 additions & 184,469 deletions public/css/app.css

This file was deleted.

67 changes: 67 additions & 0 deletions public/dist/css/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
:root {
--light-background-color: #f9f9f9;
--dark-background-color: #1e1e1e;
--dark-popups-background-color: #303030;
--app-header-height: 64px;
--app-header-height--mobile: 56px;
--app-footer-height: 29px;
--app-footer-height--medium: 40px;
--app-footer-large-medium-difference: 11px;
--app-footer-height--mobile: 58px;
--small-tabs-height: 35px ;
}

.table-date {
color: #a8a8a8;
}

.clickable {
cursor: pointer;
}

.non-selectable {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

.dashed {
border-bottom: 1px dashed;
}

.vertical-middle {
vertical-align: middle;
}

.component-title {
font-size: 1.16rem !important;
font-weight: 600 !important;
text-transform: uppercase !important;
}

.small-text-menu .v-list-item {
text-align: start !important;
min-height: 30px !important;
}
.small-text-menu .v-list-item__title {
font-weight: normal !important;
font-size: 11px !important;
letter-spacing: 0.0071428571em !important;
}

.tab-fill-height {
--profile-tabs-height: 48px;
--profile-paddings: 15px;
min-height: calc( 100vh - var(--app-header-height) - var(--app-footer-height) - var(--profile-tabs-height) - var(--profile-paddings) );
}
@media screen and (max-width: 1264px) {
.tab-fill-height {
min-height: calc( 100vh - var(--app-header-height) - var(--app-footer-height--medium) - var(--profile-tabs-height) - var(--profile-paddings) );
}
}
@media screen and (max-width: 960px) {
.tab-fill-height {
min-height: calc( 100vh - var(--app-header-height--mobile) - var(--app-footer-height--mobile) - var(--profile-tabs-height) - var(--profile-paddings) );
}
}
Loading

0 comments on commit e85d386

Please sign in to comment.