mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 10:41:56 +00:00
8f878abab1
* Banner announcement cuts off mailchimp on mobile * Hide site version on mobile. Added version to footer as well in case someone _really_ needs to check it. * Shrink pre-footer font size on mobile. * Fix column breakpoint for force offline send (Was stacking, now remains side-by-side.) * Reduce header dropdown sizes at mobile. Force gas dropdown to the left side so its not offscreen. * Columnify contracts for better mobile behavior and less code. * Remove leftover string interpolation * Better mobile header / nav sizing.
18 lines
322 B
SCSS
18 lines
322 B
SCSS
@import "common/sass/variables";
|
|
|
|
.pre-footer {
|
|
padding: 1rem;
|
|
box-shadow: 16px 16px 47px 0 rgba(0, 0, 0, .07);
|
|
margin-top: 5rem;
|
|
background-color: white;
|
|
text-align: center;
|
|
|
|
p {
|
|
font-size: $font-size-medium;
|
|
|
|
@media screen and (max-width: $screen-sm) {
|
|
font-size: $font-size-small;
|
|
}
|
|
}
|
|
}
|