28 lines
410 B
CSS
28 lines
410 B
CSS
body {
|
|
display: block;
|
|
height: 100vh;
|
|
}
|
|
|
|
.app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.content {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.inner-header-logo {
|
|
background-image: url('./../img/paw.png');
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: contain;
|
|
}
|
|
|
|
.inner-header-title {
|
|
margin-bottom: 0px;
|
|
@media(min-width: 576px) {
|
|
margin-bottom: .5rem;
|
|
}
|
|
} |