File size: 855 Bytes
6927c07
8486d85
d45b95d
8486d85
 
6927c07
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ab9d59a
6927c07
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import './variables.scss';
@import './z-index.scss';
@import './animations.scss';
@import './components/terminal.scss';
@import './components/resize-handle.scss';

body {
  --at-apply: bg-bolt-elements-app-backgroundColor;

  font-family: 'Inter', sans-serif;

  &:before {
    --line: color-mix(in lch, canvasText, transparent 93%);
    --size: 50px;

    content: '';
    height: 100vh;
    mask: linear-gradient(-25deg, transparent 60%, white);
    pointer-events: none;
    position: fixed;
    top: -8px;
    transform-style: flat;
    width: 100vw;
    z-index: -1;
    background:
      linear-gradient(90deg, var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size),
      linear-gradient(var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size);
  }
}

html,
body {
  height: 100%;
  width: 100%;
}