aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-settings/my-account-notification-preferences/my-account-notification-preferences.component.scss
blob: b4a7a0a6df9d70ada0e0c8a891f91ee3fe24fc1c (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
@use '_variables' as *;
@use '_mixins' as *;

.custom-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid $separator-border-color;

  &:first-child {
    font-size: 16px;
  }

  > div {
    padding: 10px;

    &:first-child {
      width: 350px;
    }

    @media screen and (max-width: #{breakpoint(sm)}) {
      &:first-child {
        width: auto;
        flex-grow: 1;
      }
    }
  }
}