mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-05 18:34:39 +03:00
commit
a41c17936c
@ -38,6 +38,7 @@
|
||||
h1 {
|
||||
margin-top: -6px;
|
||||
margin-bottom: -21px;
|
||||
font-feature-settings: normal;
|
||||
|
||||
.version {
|
||||
font-weight: 300;
|
||||
@ -71,6 +72,7 @@
|
||||
float: left;
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
font-feature-settings: normal;
|
||||
}
|
||||
dt {
|
||||
margin-right: 5px;
|
||||
|
@ -135,7 +135,12 @@
|
||||
|
||||
// The burger to expand .global-nav menu
|
||||
.menu-button {
|
||||
@include icon($i-menu, 18px) { line-height: 44px; }
|
||||
@include icon($i-menu, 18px) {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 22px;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
|
@ -12,8 +12,8 @@
|
||||
// Main settings-menu styles, apply to every item
|
||||
.settings-menu {
|
||||
width: 25%;
|
||||
position: fixed;
|
||||
top: 60px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
z-index: 700;
|
||||
@ -24,7 +24,7 @@
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
top: 44px;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
|
@ -19,21 +19,21 @@
|
||||
|
||||
.object-list-item {
|
||||
|
||||
@media (max-width: 500px) {
|
||||
@media (max-width: 600px) {
|
||||
display: block;
|
||||
padding: 15px 0;
|
||||
@include clearfix;
|
||||
}
|
||||
|
||||
@media (min-width: 501px) {
|
||||
@media (min-width: 601px) {
|
||||
display: flex;
|
||||
justify-content: start;
|
||||
align-items: center;
|
||||
padding: 0 15px;
|
||||
height: 68px;
|
||||
}
|
||||
|
||||
border-top: 1px solid $lightbrown;
|
||||
min-height: 68px;
|
||||
|
||||
} // .object-list-item
|
||||
|
||||
@ -89,7 +89,7 @@ a.object-list-item {
|
||||
|
||||
.object-list-item-body {
|
||||
|
||||
flex: 1;
|
||||
flex: 1 1 auto;
|
||||
align-items: stretch;
|
||||
|
||||
padding-left: 15px;
|
||||
|
Loading…
Reference in New Issue
Block a user