Skip to content

Commit

Permalink
amazing
Browse files Browse the repository at this point in the history
  • Loading branch information
SquareScreamYT committed Oct 10, 2024
1 parent 4e1c226 commit 9504fa6
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions kotobalibre/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -159,20 +159,35 @@ a {
}

#wordList {
overflow-y: auto;
overflow-y: scroll;
transition: background-color 0.3s ease;
box-sizing: border-box;
margin-bottom: 5px;
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: space-between;
justify-content: flex-start;
max-width: 800px;
-ms-overflow-style: none;
scrollbar-width: none;
scrollbar-width: thin;
scrollbar-color: var(--bg-color-darkest) var(--bg-color-darker);
-webkit-overflow-scrolling: touch;
padding-right: 10px;
}
#wordList::-webkit-scrollbar {
display: none;

#wordList::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}

#wordList::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: var(--bg-color-darkest);
}

#wordList::-webkit-scrollbar-track {
background-color: var(--bg-color-darker);
border-radius: 4px;
}

.word-entry {
Expand All @@ -184,7 +199,6 @@ a {

.word-entry:last-child {
border-bottom: none;
transition: background-color 0.3s ease;
}

.content {
Expand All @@ -201,10 +215,10 @@ a {
.word-button {
font-family: "Nunito", "SF Pro Rounded", "Apple Color Emoji", "Noto Color Emoji", "Lato", system-ui, -apple-system, Roboto, Oxygen, Ubuntu, Cantarell, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', 'Helvetica Neue', sans-serif, monospace;
display: block;
width: 100%;
width: calc(33.33% - 6.67px);
padding: 10px;
padding-left: 15px;
flex: 1 0 30%;
flex: 0 0 calc(33.33% - 6.67px);
box-sizing: border-box;
background-color: var(--bg-color-darker);
color: var(--text-color);
Expand Down

0 comments on commit 9504fa6

Please sign in to comment.