fix(console, login): label policy and privacy policy from authservice, login - remove double footer element, mobile (#3795)

fix: cnsl auth policy, lgn footer mobile
This commit is contained in:
Max Peintner
2022-06-10 14:46:59 +02:00
committed by GitHub
parent 3500961fbb
commit d6cb36db31
6 changed files with 136 additions and 128 deletions

View File

@@ -3,44 +3,48 @@ $footer-height: 50px;
$footer-padding: 0 1rem;
footer {
width: 100%;
box-sizing: border-box;
background: #00000020;
min-height: $footer-height;
width: 100%;
box-sizing: border-box;
background: #00000020;
min-height: $footer-height;
display: flex;
align-items: center;
padding: $footer-padding;
.fill-space {
flex: 1;
}
a {
font-size: 12px;
margin-left: 1rem;
display: block;
}
@media only screen and (min-width: 600px) {
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
.watermark {
display: flex;
align-items: center;
padding: $footer-padding;
.fill-space {
flex: 1;
.powered {
font-size: 12px;
margin: auto 2px;
display: none;
@media only screen and (min-width: 600px) {
display: inline-block;
}
}
a {
font-size: 12px;
margin-left: 1rem;
display: block;
.lgn-logo-watermark {
height: 40px;
min-width: 125px;
margin: auto 2px;
}
@media only screen and (min-width: 600px) {
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
.watermark {
display: flex;
.powered {
font-size: 12px;
margin: auto 2px;
}
.lgn-logo-watermark {
height: 40px;
min-width: 125px;
margin: auto 2px;
}
}
}
}
}

View File

@@ -35,7 +35,5 @@
<script src="{{ resourceUrl "scripts/avatar.js" }}"></script>
<script src="{{ resourceUrl "scripts/touched.js" }}"></script>
</body>
<footer>
{{template "footer" .}}
</footer>
{{template "footer" .}}
{{end}}