Skip to content

Commit

Permalink
fix wordmark and buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
refact0r committed Nov 18, 2023
1 parent ad6b6d8 commit 4b424d2
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions midnight.css
Original file line number Diff line number Diff line change
Expand Up @@ -329,25 +329,29 @@ a[href="https://support.discord.com"] /* hide help */
}

/* top corner title */
[class^='wordmarkWindows'] {
padding: 4px var(--spacing);
}
[class^='wordmarkWindows'] > svg {
display: none;
}
[class^='wordmarkWindows']::after {
content: 'Midnight';
display: block;
position: relative;
width: 200px;
height: 16px;
line-height: 16px;
font-family: var(--font-headline);
font-size: 10px;
font-weight: 600;
font-family: var(--font);
font-size: 13px;
font-weight: 900;
color: var(--text-5);
transform: scaleX(1.2);
margin-left: 6px;
}

/* top bar height */
[class^='typeWindows'] {
height: var(--spacing) + 8px;
height: calc(var(--spacing) + 8px);
}

/* window controls */
Expand All @@ -357,10 +361,13 @@ a[href="https://support.discord.com"] /* hide help */
[class^='winButton'] {
background: none !important;
top: 0;
width: 20px;
height: 20px;
width: calc(var(--spacing) + 8px);
height: calc(var(--spacing) + 8px);
margin: -2px 4px 0px 0px;
}
[class^='winButtonClose'] {
margin: -2px calc(var(--spacing) - 4px) 0px 0px;
}
[class^='winButton']::after {
content: '';
height: 12px;
Expand Down

0 comments on commit 4b424d2

Please sign in to comment.