1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

proper center align header title

This commit is contained in:
Kyle Spearrin
2016-09-09 23:08:10 -04:00
parent 32b2eed66c
commit 8716c50f81
4 changed files with 32 additions and 12 deletions

View File

@@ -13,6 +13,7 @@
left: 0;
right: 0;
overflow: hidden;
position: relative;
a, button {
color: white !important;
@@ -29,21 +30,30 @@
font-weight: bold;
display: block;
padding: 12px 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.left {
float: left;
display: block;
padding: 12px 10px;
position: absolute;
left: 0;
a, button {
padding: 12px 10px;
display: block;
float: left;
}
}
.right {
float: right;
display: block;
padding: 12px 10px;
right: 0;
position: absolute;
a, button {
padding: 12px 10px;
display: block;
float: right;
}
}
}