Skip to content

Commit

Permalink
Add scroll to tables viewed from mobile devices (#3082)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoobestik committed Aug 4, 2023
1 parent e7af2fd commit ec95267
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion plugins/base/src/main/resources/dokka/styles/style.css
Expand Up @@ -785,7 +785,6 @@ code:not(.block) {
padding-left: 23px;
}


.sideMenuPart a:hover {
text-decoration: none;
color: var(--default-font-color);
Expand Down Expand Up @@ -973,6 +972,14 @@ h1.cover {
word-break: break-word;
}

@media (max-width: 960px) {
.UnderCoverText table {
display: block;
word-break: normal;
overflow: auto;
}
}

.main-content a:not([data-name]) {
padding-bottom: 2px;
border-bottom: 1px solid var(--border-color);
Expand Down

0 comments on commit ec95267

Please sign in to comment.