Wallet/src/sass/views/backup-warning.scss

54 lines
783 B
SCSS
Raw Normal View History

2016-09-26 16:11:45 -03:00
#backup-warning{
2016-09-02 06:50:23 -04:00
.warning{
margin:4rem auto 1rem;
height: 11rem;
2016-09-02 06:50:23 -04:00
}
button{
color:#fff;
}
#arrow-down{
font-size: 4.2rem;
}
.cta-buttons{
float:none;
bottom:67px;
position: absolute;
width:100%;
button{
max-width: 400px;
}
}
}
@media (max-width: 400px){
2016-09-26 16:11:45 -03:00
#backup-warning{
.warning{
margin: 2rem auto 1rem;
height: 8rem;
}
h3{
font-size:1.3rem;
}
p{
font-size:.9rem;
max-width: 80%;
flex: 0 0 80%;
}
.warning-image{
height: 11rem;
}
.cta-buttons{
float:none;
bottom:65px;
position: absolute;
}
}
}
@media (max-height: 540px){
2016-09-26 16:11:45 -03:00
#backup-warning{
.cta-buttons{
float:left;
position: relative;
}
}
2016-09-26 16:11:45 -03:00
}