fix bubble + colour on events page
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Miniapple8888 2022-06-06 23:12:48 -04:00
parent 6dde3f7614
commit bf1c829bf6
4 changed files with 8 additions and 4 deletions

View File

@ -5,7 +5,7 @@
}
.bubble {
border-radius: calc(5000rem / 16);
--border-radius: calc(5000rem / 16);
display: flex;
flex-direction: row;
position: absolute;

View File

@ -6,7 +6,7 @@
}
.darkBg {
background-color: var(--card-background);
background-color: var(--dark-card-background);
}
.name {

View File

@ -55,6 +55,7 @@ export const PALETTE_NAMES = [
"--button-background",
"--footer-background",
"--card-background",
"--dark-card-background",
"--table-header",
"--table-section",

View File

@ -47,7 +47,8 @@ body {
--light--button-background: #1482e3;
--light--footer-background: #2a2a62;
--light--card-background: #DCF6F0;
--light--card-background: #FFFFFF;
--light--dark-card-background: #DCF6F0;
--light--table-header: #DCF6F0;
--light--table-section: #f7fbff;
@ -90,7 +91,7 @@ body {
--dark--icon: #ffffff;
--dark--primary-title: #5CAFF9;
--dark--primary-subtitle: #C5C5F0;
--dark--primary-subtitle: #E0E0F7;
--dark--secondary-subtitle: #ABABF2;
--dark--navbar-page-overlay: rgba(0, 0, 0, 0.7);
@ -99,6 +100,7 @@ body {
--dark--button-background: #1482e3;
--dark--footer-background: #525284;
--dark--card-background: #272751;
--dark--dark-card-background: #272751;
--dark--table-header: #252542;
--dark--table-section: #202037;
@ -150,6 +152,7 @@ body {
--button-background: var(--light--button-background);
--footer-background: var(--light--footer-background);
--card-background: var(--light--card-background);
--dark-card-background: var(--light--dark-card-background);
--table-header: var(--light--table-header);
--table-section: var(--light--table-section);