Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 /* #reinstall | 1 /* #reinstall |
2 ******************************************************************************/ | 2 ******************************************************************************/ |
3 | 3 |
4 #reinstall | 4 #reinstall |
5 { | 5 { |
6 padding: 1em 0; | 6 padding: 1em 0; |
7 } | 7 } |
8 | 8 |
9 #reinstall .button | 9 #reinstall .button |
10 { | 10 { |
11 margin: 1em 0; | 11 margin: 1em 0; |
ire
2017/12/07 12:36:27
I don't think this is doing anything
juliandoucette
2017/12/08 16:49:52
It adds space above/below the button on mobile. It
ire
2017/12/11 15:53:48
Acknowledged.
| |
12 } | 12 } |
13 | 13 |
14 @media(min-width: 768px) | 14 @media(min-width: 768px) |
15 { | 15 { |
16 #reinstall .button | 16 #reinstall .button |
17 { | 17 { |
18 margin-left: 1.5em; | 18 margin-left: 1.5em; |
19 } | 19 } |
20 | 20 |
21 [dir="rtl"] #reinstall .button | 21 [dir="rtl"] #reinstall .button |
(...skipping 30 matching lines...) Expand all Loading... | |
52 } | 52 } |
53 | 53 |
54 [dir="rtl"] #uninstall-reasons input[type="checkbox"] | 54 [dir="rtl"] #uninstall-reasons input[type="checkbox"] |
55 { | 55 { |
56 margin-left: 0.5em; | 56 margin-left: 0.5em; |
57 } | 57 } |
58 | 58 |
59 #uninstall-reasons textarea | 59 #uninstall-reasons textarea |
60 { | 60 { |
61 margin-top: 0.5em; | 61 margin-top: 0.5em; |
62 width: 100%; | |
63 max-width: 554px; | |
62 } | 64 } |
63 | 65 |
64 #reason-error | 66 #reason-error |
65 { | 67 { |
66 display: none; | 68 display: none; |
67 color: #c70d2c; | 69 color: #c70d2c; |
68 } | 70 } |
69 | 71 |
70 .error #reason-error | 72 .error #reason-error |
71 { | 73 { |
72 display: block; | 74 display: block; |
73 } | 75 } |
74 | 76 |
75 .hidden | 77 .hidden |
76 { | 78 { |
77 display: none; | 79 display: none; |
78 } | 80 } |
LEFT | RIGHT |