- fixed rendering bug for browsers other then firefox

This commit is contained in:
Sören Oesterwind 2023-07-07 13:25:57 +02:00
parent a7864b3c11
commit b66367c34a
2 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,7 @@
<nav class="navbar navbar-expand-lg bg-body-tertiary sticky-top navShadow" style="z-index: 999"> <nav class="navbar navbar-expand-lg bg-body-tertiary sticky-top navShadow" style="z-index: 999">
<div class="container-fluid"> <div class="container-fluid">
<a class="navbar-brand user-select-none ms-2" onclick="doTheConfetti()" style="cursor: default"><img draggable="false" class="me-2" src="/logo/Design_icon.svg" width="40%" /> AssetFlow</a> <a class="navbar-brand user-select-none ms-2" onclick="doTheConfetti()" style="cursor: default">
<img alt="AssetFlow Logo" draggable="false" class="me-2 headLogo" src="/logo/Design_icon.svg"/> AssetFlow</a>
<button <button
class="navbar-toggler position-absolute d-md-none collapsed" class="navbar-toggler position-absolute d-md-none collapsed"
type="button" type="button"

View File

@ -2,6 +2,15 @@ body {
font-size: 0.875rem; font-size: 0.875rem;
} }
.headLogo {
width: 10%;
}
@-moz-document url-prefix() {
.headLogo {
width: 40%;
}
}
/* /*
* Sidebar * Sidebar
*/ */