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

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

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

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