MediaWiki:Vector.css: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
/* All CSS here will be loaded for users of the Vector skin */ | /* All CSS here will be loaded for users of the Vector skin */ | ||
/* Allow logo to overflow the header */ | |||
.mw-header { | |||
overflow: visible; | |||
} | |||
/* 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; | |||
} | |||
Revision as of 06:56, 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;
}
/* 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;
}