MediaWiki:Minerva.css: Difference between revisions

From Church of God Knowledge Encyclopedia
Jump to navigation Jump to search
Blanked the page
Tags: Blanking Mobile edit Mobile web edit
No edit summary
 
Line 1: Line 1:
/* Minerva 상단 브랜드 텍스트가 너무 길 때 아이콘 깨지는 문제 방지 */
.minerva-header .branding-box {
    max-width: 60%;      /* 텍스트가 차지하는 최대 폭 제한 */
    white-space: nowrap;  /* 한 줄로 표시 */
    overflow: hidden;
    text-overflow: ellipsis; /* 넘치는 부분은 … 처리 */
}


@media (max-width: 720px) {
    .minerva-header .branding-box {
        max-width: 55%;
    }
}

Latest revision as of 14:02, 25 November 2025

/* Minerva 상단 브랜드 텍스트가 너무 길 때 아이콘 깨지는 문제 방지 */
.minerva-header .branding-box {
    max-width: 60%;       /* 텍스트가 차지하는 최대 폭 제한 */
    white-space: nowrap;  /* 한 줄로 표시 */
    overflow: hidden;
    text-overflow: ellipsis; /* 넘치는 부분은 … 처리 */
}

@media (max-width: 720px) {
    .minerva-header .branding-box {
        max-width: 55%;
    }
}