mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
themify userDetailsDialog
This commit is contained in:
parent
ea808bf41b
commit
269f799d6b
3 changed files with 13 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -50,6 +50,7 @@
|
|||
|
||||
.avatar-center-inner {
|
||||
display: flex;
|
||||
padding-top: 30px;
|
||||
}
|
||||
|
||||
.upload-btn-background {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue