themify userDetailsDialog

This commit is contained in:
Audric Ackermann 2020-08-24 14:57:55 +10:00
parent ea808bf41b
commit 269f799d6b
No known key found for this signature in database
GPG key ID: 999F434D76324AD4
3 changed files with 13 additions and 4 deletions

View file

@ -1,3 +1,5 @@
@import 'themes.scss';
* {
box-sizing: border-box;
}
@ -13,7 +15,6 @@ body {
margin: 0;
font-family: $roboto;
font-size: 14px;
color: $color-light-90;
}
// scrollbars

View file

@ -50,6 +50,7 @@
.avatar-center-inner {
display: flex;
padding-top: 30px;
}
.upload-btn-background {

View file

@ -575,7 +575,10 @@ label {
box-sizing: border-box;
max-height: 70vh;
max-width: 70vw;
background-color: $session-shade-4;
@include themify($themes) {
background-color: themed('modalBackground');
color: themed('textColor');
}
border: 1px solid $session-shade-8;
overflow: hidden;
display: flex;
@ -935,7 +938,9 @@ label {
padding: 0px $session-margin-lg;
font-family: $session-font-default;
font-weight: 100;
color: rgba($session-color-white, 0.8);
@include themify($themes) {
color: themed('textColor');
}
font-size: $session-font-md;
padding: 0px $session-margin-sm;
}
@ -956,7 +961,9 @@ label {
border-radius: 5px;
text-align: center;
font-size: $session-font-md;
background-color: $session-shade-5 !important;
@include themify($themes) {
background: themed('searchBarBackground');
}
}
&-uneditable {