|
1 | 1 | @import 'assets/styles/abstracts/variables/colors';
|
2 | 2 | @import 'assets/styles/abstracts/variables/fonts';
|
| 3 | +@import 'assets/styles/abstracts/variables/media-queries'; |
| 4 | +@import 'assets/styles/abstracts/functions'; |
3 | 5 |
|
4 | 6 | .inputs {
|
5 | 7 | display: flex;
|
6 | 8 | flex-direction: column;
|
7 | 9 | row-gap: 12px;
|
| 10 | + |
| 11 | + div > label { |
| 12 | + @media screen and (max-width: calc($media-desktop-medium - 1px)) { |
| 13 | + display: block; |
| 14 | + } |
| 15 | + } |
| 16 | + |
| 17 | + @media screen and (max-width: $media-tablet-large) { |
| 18 | + row-gap: 24px; |
| 19 | + } |
8 | 20 | }
|
9 | 21 |
|
10 | 22 | .password {
|
11 | 23 | position: relative;
|
12 | 24 |
|
| 25 | + @media screen and (max-width: $media-tablet-large) { |
| 26 | + padding-bottom: 18px; |
| 27 | + } |
| 28 | + |
13 | 29 | span:first-child {
|
14 | 30 | position: absolute;
|
15 | 31 | top: 0;
|
16 | 32 | right: 0;
|
| 33 | + |
| 34 | + @media screen and (max-width: calc($media-desktop-large - 1px)) { |
| 35 | + font-size: calc-fluid-element( |
| 36 | + calc($font-size-text-medium-small * 10), |
| 37 | + calc($font-size-text-medium * 10), |
| 38 | + $media-desktop-small, |
| 39 | + $media-desktop-large |
| 40 | + ); |
| 41 | + } |
| 42 | + |
| 43 | + @media screen and (max-width: calc($media-desktop-medium - 1px)) { |
| 44 | + line-height: $font-line-height-text-medium-small; |
| 45 | + top: -4px; |
| 46 | + } |
| 47 | + |
| 48 | + @media screen and (max-width: calc($media-desktop-small - 1px)) { |
| 49 | + font-size: $font-size-text-medium-small; |
| 50 | + } |
| 51 | + |
| 52 | + @media screen and (max-width: $media-tablet-large) { |
| 53 | + position: static; |
| 54 | + } |
| 55 | + } |
| 56 | + |
| 57 | + > div > span { |
| 58 | + @media screen and (max-width: calc($media-desktop-medium - 1px)) { |
| 59 | + min-height: 12px; |
| 60 | + } |
| 61 | + } |
| 62 | + |
| 63 | + > div { |
| 64 | + @media screen and (max-width: $media-tablet-large) { |
| 65 | + padding-bottom: 20px; |
| 66 | + } |
17 | 67 | }
|
18 | 68 | }
|
19 | 69 |
|
|
23 | 73 | font-weight: 700;
|
24 | 74 | color: $color-neutral-700;
|
25 | 75 | letter-spacing: $font-letter-spacing-main;
|
| 76 | + |
| 77 | + @media screen and (max-width: calc($media-desktop-medium - 1px)) { |
| 78 | + margin-top: 20px; |
| 79 | + font-size: calc-fluid-element( |
| 80 | + calc($font-size-text-medium-small * 10), |
| 81 | + calc($font-size-text-medium * 10), |
| 82 | + $media-tablet-small, |
| 83 | + $media-desktop-medium |
| 84 | + ); |
| 85 | + } |
| 86 | + |
| 87 | + @media screen and (max-width: $media-tablet-large) { |
| 88 | + line-height: $font-line-height-text-medium-small; |
| 89 | + min-width: 335px; |
| 90 | + margin-top: 46px; |
| 91 | + padding-top: 40px; |
| 92 | + border-top: 1px solid rgba(189, 189, 189, 0.36); |
| 93 | + text-align: center; |
| 94 | + } |
| 95 | + |
| 96 | + @media screen and (max-width: calc($media-tablet-small - 1px)) { |
| 97 | + font-size: $font-size-text-medium-small; |
| 98 | + } |
| 99 | + |
| 100 | + @media screen and (max-width: calc($media-mobile-small - 1px)) { |
| 101 | + min-width: auto; |
| 102 | + } |
26 | 103 | }
|
0 commit comments