aboutsummaryrefslogtreecommitdiffstats
path: root/apps/Notes/styles/_noteView.scss
blob: 51e7edd986dda77d0ec9dcb1cb590f725a04c05b (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
.noteView {
  @keyframes fade-in {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: fade-in .3s;

  h2 {
    padding: .75em;
    font-size: 1.25em;
    font-weight: 600;
    user-select: text;
  }

  p {
    padding: .75em;
    line-height: 1.33;
    white-space: pre-line;
    user-select: text;
  }
}