summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/content-src/components/DiscoveryStreamComponents/DSMessage/_DSMessage.scss
blob: bb9666ae38c1a6049795318fd178a30cb7727cac (plain)
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
37
.ds-message {
  margin: 8px 0 0;

  .title {
    display: flex;
    align-items: center;

    .glyph {
      width: 16px;
      height: 16px;
      margin: 0 6px 0 0;
      -moz-context-properties: fill;
      fill: var(--newtab-text-secondary-color);
      background-position: center center;
      background-size: 16px;
      background-repeat: no-repeat;
    }

    .title-text {
      line-height: 20px;
      font-size: 13px;
      color: var(--newtab-text-secondary-color);
      font-weight: 600;
      padding-right: 12px;
    }

    .link {
      line-height: 20px;
      font-size: 13px;

      &:hover,
      &:focus {
        text-decoration: underline;
      }
    }
  }
}