Skip to content
Snippets Groups Projects
Commit d8be030b authored by Adam Procter's avatar Adam Procter
Browse files

fixed long links on mobile

parent dcabb3b5
Branches lowercase
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ _30th November 2020_ ...@@ -5,6 +5,7 @@ _30th November 2020_
### Fixed ### Fixed
- Add emoji reactions is no longer missing from Cards view. - Add emoji reactions is no longer missing from Cards view.
- Long URLS now wrap when viewing on smaller screen sizes, to accommodate increased link text.
# 0.1.36 # 0.1.36
......
...@@ -198,6 +198,8 @@ textarea { ...@@ -198,6 +198,8 @@ textarea {
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
.readmode >>> a { .readmode >>> a {
font-size: 2em; font-size: 2em;
word-break: break-all;
padding-right: 0.5em;
} }
} }
</style> </style>
...@@ -190,6 +190,8 @@ textarea { ...@@ -190,6 +190,8 @@ textarea {
@media only screen and (max-width: 600px) { @media only screen and (max-width: 600px) {
.readmode >>> a { .readmode >>> a {
font-size: 2em; font-size: 2em;
word-break: break-all;
padding-right: 0.5em;
} }
} }
</style> </style>
...@@ -247,4 +247,12 @@ input { ...@@ -247,4 +247,12 @@ input {
background: #ececec; background: #ececec;
cursor: pointer; cursor: pointer;
} }
@media only screen and (max-width: 600px) {
.readmode >>> a {
font-size: 2em;
word-break: break-all;
padding-right: 0.5em;
}
}
</style> </style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment