bitwarden-estensione-browser/src/popup/scss/pages.scss

92 lines
1.4 KiB
SCSS
Raw Permalink Normal View History

2018-04-13 17:49:03 +02:00
@import "variables.scss";
app-sync {
content {
.btn {
margin-bottom: 10px;
}
}
}
2018-04-14 05:05:31 +02:00
app-password-generator .password-block {
font-size: $font-size-large;
font-family: $font-family-monospace;
margin: 20px;
2019-04-16 04:34:22 +02:00
.password-wrapper {
text-align: center;
}
2018-04-14 05:05:31 +02:00
}
2018-04-14 20:16:21 +02:00
app-home {
position: fixed;
height: 100%;
width: 100%;
.center-content {
margin-top: -50px;
height: calc(100% + 50px);
}
img {
2018-05-31 05:11:05 +02:00
width: 284px;
2018-04-14 20:16:21 +02:00
margin: 0 auto;
}
p.lead {
margin: 30px 0;
}
.btn + .btn {
margin-top: 10px;
}
a.settings-icon {
position: absolute;
top: 10px;
left: 10px;
2018-05-31 05:11:05 +02:00
@include themify($themes) {
color: themed('mutedColor');
}
2018-04-14 20:16:21 +02:00
span {
visibility: hidden;
}
&:hover {
text-decoration: none;
2018-05-31 05:11:05 +02:00
@include themify($themes) {
color: themed('primaryColor');
}
2018-04-14 20:16:21 +02:00
span {
visibility: visible;
}
}
}
}
body.body-sm, body.body-xs {
app-home {
.center-content {
margin-top: 0;
height: 100%;
}
p.lead {
margin: 15px 0;
}
}
}
body.body-full {
app-home {
.center-content {
margin-top: -80px;
height: calc(100% + 80px);
}
}
}