Move tanuki to left of title; increase max-width of title
This commit is contained in:
parent
60db4d3a51
commit
1c6ea47983
3 changed files with 6 additions and 25 deletions
|
@ -150,16 +150,11 @@ header {
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-logo {
|
.header-logo {
|
||||||
position: absolute;
|
display: inline-block;
|
||||||
left: 50%;
|
margin: 0 8px 0 3px;
|
||||||
|
position: relative;
|
||||||
top: 7px;
|
top: 7px;
|
||||||
transition-duration: .3s;
|
transition-duration: .3s;
|
||||||
z-index: 999;
|
|
||||||
|
|
||||||
#logo {
|
|
||||||
position: relative;
|
|
||||||
left: -50%;
|
|
||||||
}
|
|
||||||
|
|
||||||
svg,
|
svg,
|
||||||
img {
|
img {
|
||||||
|
@ -169,15 +164,6 @@ header {
|
||||||
&:hover {
|
&:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: $screen-xs-max) {
|
|
||||||
right: 20px;
|
|
||||||
left: auto;
|
|
||||||
|
|
||||||
#logo {
|
|
||||||
left: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
|
@ -185,7 +171,7 @@ header {
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
max-width: 385px;
|
max-width: 450px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
line-height: $header-height;
|
line-height: $header-height;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
@ -195,10 +181,6 @@ header {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
@media (min-width: $screen-sm-min) and (max-width: $screen-sm-max) {
|
|
||||||
max-width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: $screen-xs-max) {
|
@media (max-width: $screen-xs-max) {
|
||||||
max-width: 190px;
|
max-width: 190px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -79,7 +79,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.sub-nav {
|
&.sub-nav {
|
||||||
text-align: center;
|
|
||||||
background-color: $gray-normal;
|
background-color: $gray-normal;
|
||||||
|
|
||||||
.container-fluid {
|
.container-fluid {
|
||||||
|
|
|
@ -61,12 +61,12 @@
|
||||||
%div
|
%div
|
||||||
= link_to "Sign in", new_session_path(:user, redirect_to_referer: 'yes'), class: 'btn btn-sign-in btn-success'
|
= link_to "Sign in", new_session_path(:user, redirect_to_referer: 'yes'), class: 'btn btn-sign-in btn-success'
|
||||||
|
|
||||||
%h1.title= title
|
|
||||||
|
|
||||||
.header-logo
|
.header-logo
|
||||||
= link_to root_path, class: 'home', title: 'Dashboard', id: 'logo' do
|
= link_to root_path, class: 'home', title: 'Dashboard', id: 'logo' do
|
||||||
= brand_header_logo
|
= brand_header_logo
|
||||||
|
|
||||||
|
%h1.title= title
|
||||||
|
|
||||||
= yield :header_content
|
= yield :header_content
|
||||||
|
|
||||||
= render 'shared/outdated_browser'
|
= render 'shared/outdated_browser'
|
||||||
|
|
Loading…
Reference in a new issue