mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-31 21:51:10 -04:00
init crater
This commit is contained in:
219
resources/assets/sass/pages/settings.scss
vendored
Normal file
219
resources/assets/sass/pages/settings.scss
vendored
Normal file
@ -0,0 +1,219 @@
|
||||
// Settings
|
||||
// -------------------------
|
||||
|
||||
.settings-container {
|
||||
margin-top: 40px;
|
||||
|
||||
.settings-sidebar {
|
||||
list-style-type: none;
|
||||
padding: 0px;
|
||||
|
||||
.settings-menu-item {
|
||||
padding: 10px 0px;
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
line-height: 18px;
|
||||
color: $ls-color-black;
|
||||
|
||||
.setting-icon {
|
||||
width: 25px;
|
||||
color: $ls-color-gray;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.link-color {
|
||||
color: $ls-color-gray--dark;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.active-setting {
|
||||
color: $ls-color-primary !important;
|
||||
cursor: pointer;
|
||||
|
||||
.setting-icon {
|
||||
color: $ls-color-primary !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.setting-main-container {
|
||||
|
||||
.setting-card {
|
||||
padding: 30px;
|
||||
min-height: 620px;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
margin: 0px;
|
||||
|
||||
.page-title {
|
||||
margin: 0;
|
||||
padding-bottom: 10px;
|
||||
font-weight: 500;
|
||||
font-size: 17.5px;
|
||||
line-height: 21px;
|
||||
letter-spacing: 0.1px;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.page-sub-title {
|
||||
max-width: 480px;
|
||||
font-size: 14px;
|
||||
line-height: 21px;
|
||||
color: $ls-color-gray--dark;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.input-label {
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
line-height: 21px;
|
||||
color: #55547A;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.expense-category {
|
||||
td {
|
||||
background-color: $ls-color-gray--very-light !important;
|
||||
}
|
||||
}
|
||||
|
||||
.tax-table {
|
||||
td {
|
||||
background-color: $ls-color-gray--very-light !important;
|
||||
}
|
||||
|
||||
.tax-name {
|
||||
|
||||
}
|
||||
|
||||
.compound-tax {
|
||||
display: inline;
|
||||
padding: 2px 8px;
|
||||
font-size: 10px;
|
||||
line-height: 15px;
|
||||
background: $red--very-light;
|
||||
color: $red--dark;
|
||||
}
|
||||
}
|
||||
|
||||
.add-new-tax {
|
||||
height: 45px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.flex-box {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.left {
|
||||
position: relative;
|
||||
width: 50px;
|
||||
}
|
||||
|
||||
.btn-switch {
|
||||
position: absolute;
|
||||
top: -18px;
|
||||
}
|
||||
|
||||
.box-title {
|
||||
margin-bottom: 5px;
|
||||
padding: 0;
|
||||
font-size: 16px;
|
||||
line-height: 21px;
|
||||
color: #55547A;
|
||||
}
|
||||
|
||||
.box-desc {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
max-width: 480px;
|
||||
font-size: 12px;
|
||||
line-height: 18px;
|
||||
color: $ls-color-gray--dark;
|
||||
}
|
||||
|
||||
.notes {
|
||||
overflow: hidden;
|
||||
width: 200px;
|
||||
|
||||
.note {
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media(max-width: $x-small-breakpoint ) {
|
||||
|
||||
.settings-container {
|
||||
|
||||
.setting-main-container {
|
||||
|
||||
.setting-card {
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
& .ml-15 {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.table-component {
|
||||
|
||||
td:first-child {
|
||||
height: auto;
|
||||
min-height: 10px;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.tax-table {
|
||||
|
||||
.tax-name {
|
||||
margin-top: 21px;
|
||||
width: 76%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.expense-category {
|
||||
|
||||
.table-component__table__body {
|
||||
|
||||
tr:first-child {
|
||||
|
||||
td:nth-child(2) {
|
||||
height: auto;
|
||||
width: 101%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.add-new-tax {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user