User:Sylvia/citizen.css: Difference between revisions

From Phantasy Star Universe Clementine
m (Testing)
mNo edit summary
Line 9: Line 9:


.mw-logo-wordmark {
.mw-logo-wordmark {
     color: red; /* Change the wordmark's text color to red */
     color: red;
     white-space: nowrap; /* Prevent wordmark wrapping if unintended */
     white-space: nowrap;
     overflow: hidden; /* Prevent text from spilling outside the container */
     overflow: hidden;
     text-overflow: ellipsis; /* Optional: Add ellipsis if the text overflows */
     text-overflow: ellipsis;
}
}

Revision as of 20:12, 15 December 2024

html, body {
    overflow-x: hidden;
}

.citizen-drawer__header {
    max-width: 100%;
    overflow: hidden;
}

.mw-logo-wordmark {
    color: red;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}