forked from mirrors/Vencord
f14001b531
Co-authored-by: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Co-authored-by: V <vendicated@riseup.net>
34 lines
738 B
CSS
34 lines
738 B
CSS
.client-theme-settings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.client-theme-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.client-theme-settings-labels {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.client-theme-container > [class^="colorSwatch"] > [class^="swatch"] {
|
|
border: thin solid var(--background-modifier-accent) !important;
|
|
}
|
|
|
|
.client-theme-warning * {
|
|
color: var(--text-danger);
|
|
}
|
|
|
|
.client-theme-contrast-warning {
|
|
background-color: var(--background-primary);
|
|
padding: 0.5rem;
|
|
border-radius: .5rem;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|