Jump to content

MediaWiki:Vector.css: Difference between revisions

From KAVAN RC Wiki
No edit summary
No edit summary
Line 3: Line 3:
.mw-header {
.mw-header {
     overflow: visible;
     overflow: visible;
     height: 20px;
     height: 50px;
}
}



Revision as of 07:02, 28 January 2026

/* All CSS here will be loaded for users of the Vector skin */
/* Allow logo to overflow the header */
.mw-header {
    overflow: visible;
    height: 50px;
}

/* Prevent header height from expanding */
.mw-header-logo {
    align-items: flex-start;
}

/* Allow wordmark to overflow downward */
.mw-logo-wordmark {
    position: relative;
    z-index: 10;
}

/* Optional: shift logo downward */
.mw-logo-wordmark img {
    margin-top: 0;
}