summaryrefslogtreecommitdiffstats
path: root/apps/web-shared/src/styles/_base.scss
blob: 414b4400fc5a2b8f165775834b53190f51c142f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// --------------------------------

// Basic Style - Essential CSS rules and utility classes

// --------------------------------

@forward 'base/breakpoints';
@forward 'base/mixins';
@forward 'base/grid-layout';

@use 'base/reset';
@use 'base/colors';
@use 'base/spacing';
@use 'base/shared-styles';
@use 'base/typography';
@use 'base/icons';
@use 'base/buttons';
@use 'base/forms';
@use 'base/z-index';
@use 'base/visibility';
@use 'base/accessibility';
@use 'base/util';

pre {
  font-family: monospace !important;
}

*:focus-visible {
  outline: 1px auto;
}

.c-disabled {
  cursor: not-allowed !important;
  filter: opacity(.45);
  pointer-events: none !important;

  &.loading {
    cursor: wait !important;
  }
}

button.btn--state-b {
  cursor: wait;
}

button.reset {
  cursor: pointer !important;
}