1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Remove hardcoded colours from BBUI modal component

This commit is contained in:
Andrew Kingston 2021-07-23 15:43:44 +01:00
parent 24f6adbcca
commit d53cc48338
2 changed files with 0 additions and 7 deletions

View file

@ -115,7 +115,6 @@
} }
.spectrum-Modal { .spectrum-Modal {
background: var(--background);
overflow: visible; overflow: visible;
max-height: none; max-height: none;
margin: 40px 0; margin: 40px 0;

View file

@ -88,7 +88,6 @@
display: grid; display: grid;
position: relative; position: relative;
gap: var(--spacing-xl); gap: var(--spacing-xl);
color: var(--ink);
} }
.spectrum-Dialog-content { .spectrum-Dialog-content {
@ -106,13 +105,8 @@
position: absolute; position: absolute;
top: 15px; top: 15px;
right: 15px; right: 15px;
color: var(--ink);
font-size: var(--font-size-m); font-size: var(--font-size-m);
} }
.close-icon:hover {
color: var(--grey-6);
cursor: pointer;
}
.close-icon :global(svg) { .close-icon :global(svg) {
margin-right: 0; margin-right: 0;
} }