Fix: Logo size in small devices

This commit is contained in:
František Musil 2020-04-06 23:31:16 +02:00
parent 7c530eecb2
commit 359ae7973b
3 changed files with 15 additions and 3 deletions

View File

@ -128,7 +128,7 @@ img::-moz-selection {
}
#mainNav .navbar-brand img {
max-height: 80px;
max-height: 45px;
transition: max-height 0.3s, max-height 0.3s;
}
@ -149,6 +149,18 @@ img::-moz-selection {
color: #00ffff;
}
@media (min-width: 390px) {
#mainNav .navbar-brand img {
max-height: 60px;
}
}
@media (min-width: 480px) {
#mainNav .navbar-brand img {
max-height: 80px;
}
}
@media (min-width: 992px) {
#mainNav {
padding-top: 10px;

File diff suppressed because one or more lines are too long

View File

@ -20,7 +20,7 @@
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css">
<!-- Custom styles for this template -->
<link href="/css/agency.min.css?v=2" rel="stylesheet">
<link href="/css/agency.min.css?v=3" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-9715156-19"></script>