Skip to content
Snippets Groups Projects
Commit fc04218b authored by Julian Späth's avatar Julian Späth Committed by Julian Matschinske
Browse files

Fix mac issue of the logo height

parent fbedf146
No related branches found
No related tags found
No related merge requests found
<div class="container is-fluid"> <div class="container is-fluid">
<nav class="navbar" role="navigation" aria-label="main navigation"> <nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand"> <div class="navbar-brand">
<img routerLink="/" src="assets/covex_logo.png" class="menu-icon is-hoverable navbar-item" alt="logo" width="200"/> <img routerLink="/" src="assets/covex_logo.png" class="menu-icon is-hoverable navbar-item logo" alt="logo"/>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false"> <a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span> <span aria-hidden="true"></span>
<span aria-hidden="true"></span> <span aria-hidden="true"></span>
......
...@@ -3,7 +3,7 @@ i { ...@@ -3,7 +3,7 @@ i {
} }
div.scroll{ div.scroll{
height: calc(100vh - 102px);
overflow: auto; overflow: auto;
height: calc(100vh - 70px);
} }
<!--htmlhint inline-style-disabled:false -->
<div class="content landing scroll"> <div class="content landing scroll">
<div class="container has-text-centered"> <div class="container has-text-centered">
<div class="column is-6 width100"> <div class="column is-6 width100">
<img src="assets/covex_logo.png"> <img src="assets/covex_logo.png" style="height: 200px; width: 600px">
<h1 class="subtitle is-2"> <h1 class="subtitle is-2">
<i>Explore the </i> <b> virus-host interactome</b> <i>Explore the </i> <b> virus-host interactome</b>
......
img { img {
width: 600px; width: 600px;
height: 200px;
padding: 30px; padding: 30px;
background-color: rgba(255, 255, 255, 0.7); background-color: rgba(255, 255, 255, 0.7);
border-radius: 25px; border-radius: 25px;
} }
div.scroll{ div.scroll{
height: calc(100vh - 82.36px);
overflow: auto; overflow: auto;
height: calc(100vh - 60px);
} }
h1.subtitle.is-2 { h1.subtitle.is-2 {
......
...@@ -26,12 +26,26 @@ body { ...@@ -26,12 +26,26 @@ body {
height: 100%; height: 100%;
} }
nav.navbar {
height: 60px;
}
img.menu-icon.is-hoverable.navbar-item.logo {
height: 45px;
width: 125px;
padding-top: 5px;
padding-bottom: 10px;
padding-left: 0px;
padding-right: 0px;
}
.landing { .landing {
background-color: $primary; background-color: $primary;
background-image: url("assets/virus_background.jpg"); background-image: url("assets/virus_background.jpg");
background-size: cover; background-size: cover;
background-repeat: no-repeat; background-repeat: no-repeat;
height: calc(100vh - 82.36px); height: calc(100vh - 60px);
width: 100vw;
} }
div.navbar-menu { div.navbar-menu {
...@@ -112,11 +126,11 @@ div.covex.network { ...@@ -112,11 +126,11 @@ div.covex.network {
div.card.network { div.card.network {
width: 100%; width: 100%;
height: calc(100vh - 85px); height: calc(100vh - 75px);
} }
div.network { div.network {
height: calc(100vh - 210px); height: calc(100vh - 200px);
} }
div.parent { div.parent {
...@@ -141,9 +155,9 @@ div.center { ...@@ -141,9 +155,9 @@ div.center {
div.covex.explorer { div.covex.explorer {
height: calc(100vh - 90px); height: calc(100vh - 70px);
margin-left: 20px; margin-left: 10px;
margin-right: 20px; margin-right: 10px;
} }
.analysis-view { .analysis-view {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment