222-responsive-icon-nav-css icon indicating copy to clipboard operation
222-responsive-icon-nav-css copied to clipboard

css: .link-text being displayed in small screen

Open ag2byte opened this issue 4 years ago • 0 comments

because the display property is set to block on hover for .link-text, on small screen it results in a weird transition. Set it as : @media (max-width:600px){ .navbar:hover { width: 100vw; } .navbar:hover .link-text { display: none; }}

ag2byte avatar Dec 07 '20 05:12 ag2byte