fix: new radio buttons, fix background bugs etc

Co-authored-by: Alex Sparkes <turbomarshmello@gmail.com>
This commit is contained in:
David Ralph
2021-03-20 15:52:27 +00:00
parent ab7681f3d0
commit e092c805e8
14 changed files with 120 additions and 73 deletions

View File

@@ -9,6 +9,7 @@ $theme-colours: (
$modal: (
'background': #fff,
'background-dark': #2f3542,
'text': rgba(0, 0, 0, 1),
'tab-underline': rgba(204, 204, 204, 1),
'tab-underline-active': rgba(0, 0, 0, 1),

View File

@@ -5,6 +5,18 @@
@import 'modules/marketplace';
@import 'modules/buttons';
:root {
--main-text: map-get($theme-colours, 'main');
--modal-text: map-get($modal, 'text');
--background: map-get($modal, 'background');
}
.dark {
--main-text: map-get($theme-colours, 'secondary');
--modal-text: map-get($theme-colours, 'main');
--background: map-get($modal, 'background-dark');
}
body {
background: #2f3640;
margin: 0;