Riku
2024-07-08 04e9d32ac49bf5a38adf3cd7dab6bff6e346eefd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
:root {
  --fy-header-height: 40px;
  --fy-body-height: calc(100vh - var(--fy-header-height));
}
 
.fy-header {
  height: var(--fy-header-height);
  // background-color: antiquewhite;
}
 
.fy-body {
  height: var(--fy-body-height);
  // background-color: azure;
}