Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
laurakalbag-dot-com
laurakalbag-dot-com
Commits
74f29623
Commit
74f29623
authored
Feb 14, 2019
by
Laura Kalbag
⚡
Browse files
Add missing selector for breaking links on narrow viewports
parent
feb219c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
themes/static-kalbag/static/css/style.css
View file @
74f29623
...
...
@@ -261,13 +261,14 @@ a {
}
@media
screen
and
(
max-width
:
35em
)
{
/* for really long URLs on narrow viewports */
-ms-word-break
:
break-all
;
word-break
:
break-all
;
word-break
:
break-word
;
-webkit-hyphens
:
auto
;
-moz-hyphens
:
auto
;
hyphens
:
auto
;
a
{
/* for really long URLs on narrow viewports */
word-break
:
break-all
;
word-break
:
break-word
;
-webkit-hyphens
:
auto
;
-moz-hyphens
:
auto
;
hyphens
:
auto
;
}
}
a
:hover
,
a
:active
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment