Updated some modifiers CSS

This commit is contained in:
thepaperpilot 2022-04-16 18:37:40 -05:00
parent c84ff0cb08
commit 7bc29fc145
3 changed files with 15 additions and 1 deletions

View file

@ -9,7 +9,7 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Kalam&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Kalam&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">

View file

@ -2,6 +2,10 @@
display: flex; display: flex;
} }
.modifier-container:nth-child(2n) {
background: var(--raised-background);
}
.modifier-amount { .modifier-amount {
flex-basis: 100px; flex-basis: 100px;
flex-shrink: 0; flex-shrink: 0;

View file

@ -150,10 +150,20 @@ export default defineComponent({
height: calc(100% + 50px); height: calc(100% + 50px);
} }
.modal-body > .tab-family-container:first-child {
margin: calc(10px + var(--feature-margin)) 10px 0 10px;
border: none;
}
.tab-family-container > :nth-child(2) { .tab-family-container > :nth-child(2) {
margin-top: 20px; margin-top: 20px;
} }
.modal-body > .tab-family-container > :nth-child(2) {
/* TODO Why does it need this instead of 20px? */
margin-top: 50px;
}
.tab-family-container[data-v-f18896fc] > :last-child { .tab-family-container[data-v-f18896fc] > :last-child {
margin-bottom: 20px; margin-bottom: 20px;
} }