import styles from './Logo.module.scss'; const Logo = () => { return ( ); }; export default Logo; orms/label.module.scss?h=v1.0.0&id=6a898c510f5c9b5469f639472970d1fefe9766ca'>treecommitdiffstats
path: root/src/components/atoms/forms/label.module.scss
blob: f9009254cb37d5868331cdc9bdb535692e4e5b0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.label {
  color: var(--color-primary-darker);
  font-weight: 600;

  &--small {
    font-size: var(--font-size-sm);
    font-variant: small-caps;
  }

  &--medium {
    font-size: var(--font-size-md);
  }
}

.required {
  color: var(--color-secondary);
}