Added import sorting to prettier config
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
2b4b0d0a39
commit
53f63981c6
@ -1,6 +1,6 @@
|
||||
$margin: 1rem;
|
||||
|
||||
.main {
|
||||
margin-top: $margin;
|
||||
margin-bottom: $margin;
|
||||
}
|
||||
margin-top: $margin;
|
||||
margin-bottom: $margin;
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
.body {
|
||||
padding: 1rem;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.info {
|
||||
text-align: right;
|
||||
}
|
||||
text-align: right;
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
.card {
|
||||
border: 0;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.main {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
.main {
|
||||
position: absolute;
|
||||
top: 1rem;
|
||||
right: 1rem;
|
||||
position: absolute;
|
||||
top: 1rem;
|
||||
right: 1rem;
|
||||
|
||||
cursor: pointer;
|
||||
}
|
||||
cursor: pointer;
|
||||
}
|
||||
|
@ -1,18 +1,17 @@
|
||||
.main {
|
||||
padding-top: 10rem;
|
||||
margin-bottom: 2rem;
|
||||
padding-top: 10rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
|
||||
.avatar {
|
||||
border-radius: 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.avatarContainer {
|
||||
margin-right: 2rem;
|
||||
margin-right: 2rem;
|
||||
}
|
||||
|
||||
.avatarCol {
|
||||
display: flex;
|
||||
justify-content: right;
|
||||
}
|
||||
display: flex;
|
||||
justify-content: right;
|
||||
}
|
||||
|
@ -1,8 +1,8 @@
|
||||
.main {
|
||||
height: 100vh;
|
||||
margin-bottom: 1rem;
|
||||
height: 100vh;
|
||||
margin-bottom: 1rem;
|
||||
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
.body {
|
||||
padding: 10rem 0;
|
||||
}
|
||||
padding: 10rem 0;
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
.body {
|
||||
padding: 10rem 0;
|
||||
}
|
||||
padding: 10rem 0;
|
||||
}
|
||||
|
@ -1,10 +1,9 @@
|
||||
.body {
|
||||
padding: 10rem 1rem;
|
||||
|
||||
padding: 10rem 1rem;
|
||||
@media (max-width: 840px) {
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
@media (max-width: 840px) {
|
||||
padding: 2rem 1rem;
|
||||
}
|
||||
|
||||
min-height: 100vh;
|
||||
}
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
.body {
|
||||
height: 100vh;
|
||||
padding: 10rem 0;
|
||||
}
|
||||
height: 100vh;
|
||||
padding: 10rem 0;
|
||||
}
|
||||
|
@ -1,21 +1,21 @@
|
||||
.body {
|
||||
height: 100vh;
|
||||
padding: 10rem 0;
|
||||
height: 100vh;
|
||||
padding: 10rem 0;
|
||||
}
|
||||
|
||||
.title {
|
||||
text-align: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.divider {
|
||||
margin: 0 1rem;
|
||||
margin: 0 1rem;
|
||||
}
|
||||
|
||||
.loginButton,
|
||||
.signupButton {
|
||||
width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.signupButton {
|
||||
margin-top: .5rem;
|
||||
}
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
@ -1,108 +1,104 @@
|
||||
[data-theme="dark"] {
|
||||
|
||||
body {
|
||||
background-color: $bg-dark;
|
||||
color: $text-primary;
|
||||
}
|
||||
|
||||
.empty {
|
||||
background-color: $bg-dark-secondary;
|
||||
color: $text-primary;
|
||||
}
|
||||
|
||||
.card {
|
||||
background-color: $bg-dark;
|
||||
}
|
||||
|
||||
.form-input,
|
||||
.form-icon {
|
||||
background-color: $bg-dark-secondary !important;
|
||||
color: $text-primary;
|
||||
border-color: lighten($bg-dark-secondary, 10%);
|
||||
}
|
||||
|
||||
.divider-vert {
|
||||
&::before {
|
||||
border-color: lighten($bg-dark-secondary, 10%);
|
||||
}
|
||||
|
||||
&[data-content]::after {
|
||||
background-color: $bg-dark;
|
||||
}
|
||||
}
|
||||
|
||||
.bg-gray {
|
||||
background-color: $bg-dark-secondary !important;
|
||||
}
|
||||
|
||||
.chip {
|
||||
background-color: lighten($bg-dark-secondary, 10%);
|
||||
}
|
||||
|
||||
.divider {
|
||||
border-color: $bg-dark-secondary;
|
||||
}
|
||||
|
||||
.table {
|
||||
|
||||
td,
|
||||
th {
|
||||
border-color: lighten($bg-dark-secondary, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
.table tbody tr.active,
|
||||
.table.table-striped tbody tr.active {
|
||||
background: $bg-dark-secondary
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: $primary-color-dark;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $primary-color;
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
color: $primary-color !important;
|
||||
}
|
||||
|
||||
.bg-primary {
|
||||
background-color: $primary-color !important;
|
||||
}
|
||||
|
||||
.btn {
|
||||
background-color: $bg-dark-secondary;
|
||||
color: $primary-color;
|
||||
|
||||
border-color: $primary-color;
|
||||
|
||||
&:hover {
|
||||
border-color: $primary-color;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border-color: $primary-color;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: $primary-color;
|
||||
border-color: $primary-color;
|
||||
|
||||
color: $text-primary;
|
||||
|
||||
&:hover {
|
||||
background-color: $primary-color-dark;
|
||||
border-color: $primary-color-dark;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
background-color: $primary-color-dark;
|
||||
border-color: $primary-color-dark;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
body {
|
||||
background-color: $bg-dark;
|
||||
color: $text-primary;
|
||||
}
|
||||
|
||||
.empty {
|
||||
background-color: $bg-dark-secondary;
|
||||
color: $text-primary;
|
||||
}
|
||||
|
||||
.card {
|
||||
background-color: $bg-dark;
|
||||
}
|
||||
|
||||
.form-input,
|
||||
.form-icon {
|
||||
background-color: $bg-dark-secondary !important;
|
||||
color: $text-primary;
|
||||
border-color: lighten($bg-dark-secondary, 10%);
|
||||
}
|
||||
|
||||
.divider-vert {
|
||||
&::before {
|
||||
border-color: lighten($bg-dark-secondary, 10%);
|
||||
}
|
||||
|
||||
&[data-content]::after {
|
||||
background-color: $bg-dark;
|
||||
}
|
||||
}
|
||||
|
||||
.bg-gray {
|
||||
background-color: $bg-dark-secondary !important;
|
||||
}
|
||||
|
||||
.chip {
|
||||
background-color: lighten($bg-dark-secondary, 10%);
|
||||
}
|
||||
|
||||
.divider {
|
||||
border-color: $bg-dark-secondary;
|
||||
}
|
||||
|
||||
.table {
|
||||
td,
|
||||
th {
|
||||
border-color: lighten($bg-dark-secondary, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
.table tbody tr.active,
|
||||
.table.table-striped tbody tr.active {
|
||||
background: $bg-dark-secondary;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: $primary-color-dark;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $primary-color;
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
color: $primary-color !important;
|
||||
}
|
||||
|
||||
.bg-primary {
|
||||
background-color: $primary-color !important;
|
||||
}
|
||||
|
||||
.btn {
|
||||
background-color: $bg-dark-secondary;
|
||||
color: $primary-color;
|
||||
|
||||
border-color: $primary-color;
|
||||
|
||||
&:hover {
|
||||
border-color: $primary-color;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
border-color: $primary-color;
|
||||
}
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: $primary-color;
|
||||
border-color: $primary-color;
|
||||
|
||||
color: $text-primary;
|
||||
|
||||
&:hover {
|
||||
background-color: $primary-color-dark;
|
||||
border-color: $primary-color-dark;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
background-color: $primary-color-dark;
|
||||
border-color: $primary-color-dark;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in new issue