* Wed Jan 29 2025 Brian Read <brianr@koozali.org> 11.0.0-48.sme

- Make Country flag display independant of the internet. [SME: 12893]
This commit is contained in:
2025-01-29 12:04:38 +00:00
parent a62968d2d9
commit 642d013437
3 changed files with 306 additions and 274 deletions

View File

@@ -68,9 +68,18 @@ color: #8ebe43;
background-color: #8ebe43;
}
/* flag container no flag */
/* flag container*/
#flag-container span {
font-size: 24px;
font-size: 24px;
display: flex; /* Allows for easy centering */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
width: 100%; /* Full width of parent */
height: 24px; /* Set a fixed height */
border: 1px solid #ccc; /* Light gray border */
border-radius: 5px; /* Rounded corners */
cursor: default; /* Prevent text cursor */
}
.fallback-box {
@@ -84,4 +93,4 @@ background-color: #8ebe43;
}
HERE
}
}