Gatses
Chevereto Member
Hello again. 🙂
I found small css bug.
If we will try to add any really big word into menu, something like "Someverybigwordwithoutspace" it will be cut off.
Maybe will be better to change
to
?
I found small css bug.
If we will try to add any really big word into menu, something like "Someverybigwordwithoutspace" it will be cut off.
Maybe will be better to change
Code:
@media (min-width: 992px) {
.pop-box {
width: 150px;
}
}
Code:
@media (min-width: 992px) {
.pop-box {
min-width: 150px;
}
}