small changes to logo in mobile view

This commit is contained in:
Eddy Zhou 2025-09-23 20:18:54 -04:00
parent 8e880e5e2e
commit b50e847952
2 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,2 @@
#probability #bayesTheorem #setTheory

View File

@ -27,9 +27,28 @@ LogoLink.css = `
.logo-link img { .logo-link img {
height: 1.00rem; height: 1.00rem;
object-fit: scale-down; object-fit: contain;
display: block; display: block;
} }
/* Mobile styles - match hamburger menu height */
@media (max-width: 1200px) {
.logo-link {
padding: 5px;
margin-bottom: 0;
height: 34px;
width: auto;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
.logo-link img {
height: 0.75rem;
object-fit: contain;
}
}
` `
export default (() => LogoLink) satisfies QuartzComponentConstructor export default (() => LogoLink) satisfies QuartzComponentConstructor