1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 11:43:46 +00:00

lock component and tabs component

This commit is contained in:
Kyle Spearrin
2018-04-04 22:59:42 -04:00
parent 9a1a7d33be
commit 292f5810ac
14 changed files with 246 additions and 5 deletions

View File

@@ -141,3 +141,58 @@ header {
.content {
padding: 15px;
}
.tabs {
width: 100%;
height: 55px;
background-color: white;
border-top: 1px solid $border-color-dark;
position: absolute;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
ul {
width: 100%;
list-style: none;
padding: 0;
margin: 0;
li {
width: 25%;
float: left;
display: inline-block;
padding: 0;
margin: 0;
a {
text-align: center;
display: block;
padding: 7px 0;
text-decoration: none;
color: $gray-light;
font-size: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&:hover, &:focus {
background-color: $list-item-hover;
}
i {
display: block;
margin-bottom: 2px;
text-align: center;
}
}
&.active {
a {
color: $brand-primary;
}
}
}
}
}