Skip to content

Commit

Permalink
fix: reduce logo size
Browse files Browse the repository at this point in the history
zzzgydi authored Sep 9, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent f9b91fa commit acfe5db
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions src/assets/styles/layout.scss
Original file line number Diff line number Diff line change
@@ -16,28 +16,30 @@
user-select: none;
overflow: hidden;

$maxLogo: 90px;

.the-logo {
position: relative;
flex: 0 1 168px;
flex: 0 1 $maxLogo;
width: 100%;
max-width: 168px;
max-height: 168px;
max-width: $maxLogo + 32px;
max-height: $maxLogo;
margin: 0 auto;
padding: 0 16px;
text-align: center;
box-sizing: border-box;

img,
svg {
width: 96%;
height: 96%;
width: 100%;
height: 100%;
pointer-events: none;
}

.the-newbtn {
position: absolute;
right: 20px;
bottom: 12px;
right: 10px;
bottom: 0px;
transform: scale(0.8);
}
}

0 comments on commit acfe5db

Please sign in to comment.