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

  animation: fade-in .3s;

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

  p {
    padding: .5rem 1rem 1rem;
    line-height: 1.33;
    white-space: pre-line;
    user-select: text;
  }
}