hensei-web/components/common/Token/index.module.scss
Justin Edmund 4c5fb3c28d Rename all files and fix imports
* Renaming index.scss files to index.module.scss
* Changing `import from` to `import styles from`
2023-06-23 13:19:38 -07:00

31 lines
608 B
SCSS

.Token {
background: var(--input-bg);
border-radius: 99px;
display: inline-flex;
font-size: $font-tiny;
font-weight: $bold;
min-width: 3rem;
text-align: center;
padding: $unit-three-fourth ($unit * 1.5);
user-select: none;
&.ChargeAttack.On {
background: var(--charge-attack-bg);
color: var(--charge-attack-text);
}
&.FullAuto.On {
background: var(--full-auto-bg);
color: var(--full-auto-text);
}
&.AutoGuard.On,
&.AutoSummon.On {
background: var(--auto-guard-bg);
color: var(--auto-guard-text);
}
&.Off {
color: var(--text-secondary);
}
}