CSS fixes, overlapping text, etc.
Fixed: Text Overlap Issue in Radio Group on Mobile Devices #1 / #1 Fixed: FAQ Answer Box Text Cut-Off Issue #2 / #2 Fixed: Text Overflow Issue in Specific FAQ Question #3 / #3
This commit is contained in:
parent
3f8ca967f1
commit
c81eda13f7
1 changed files with 7 additions and 1 deletions
|
@ -119,6 +119,7 @@ input[type="text"]:focus {
|
|||
display: flex;
|
||||
justify-content: space-around;
|
||||
flex-wrap: wrap;
|
||||
|
||||
}
|
||||
|
||||
.radio-group input[type="radio"] {
|
||||
|
@ -137,6 +138,9 @@ input[type="text"]:focus {
|
|||
border: 2px solid transparent;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
|
||||
color: var(--cyber-font-color);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.radio-group input[type="radio"]:checked + label {
|
||||
|
@ -246,6 +250,8 @@ button:active {
|
|||
position: relative;
|
||||
margin-bottom: 5px;
|
||||
transition: background-color 0.3s;
|
||||
white-space: normal;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.faq-question::before {
|
||||
|
@ -271,7 +277,7 @@ button:active {
|
|||
}
|
||||
|
||||
.faq-checkbox:checked + .faq-question + .faq-answer {
|
||||
max-height: 500px;
|
||||
max-height: 100%;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue