Small fixes

This commit is contained in:
DrMint 2024-06-07 17:54:20 +02:00
parent 9d8a29e7bb
commit 919ec17cd7
2 changed files with 1 additions and 5 deletions

View File

@ -560,6 +560,7 @@ const { currentTheme } = Astro.locals;
* { * {
scrollbar-width: thin; scrollbar-width: thin;
scrollbar-color: var(--color-base-650) transparent; scrollbar-color: var(--color-base-650) transparent;
-webkit-tap-highlight-color: transparent;
} }
*::selection { *::selection {

View File

@ -90,7 +90,6 @@ if (languages.length > 0) {
max-width: min(35rem, 100%); max-width: min(35rem, 100%);
max-height: 50vh; max-height: 50vh;
overflow: hidden; overflow: hidden;
margin-bottom: 2em;
border-radius: 16px; border-radius: 16px;
transition: 100ms scale; transition: 100ms scale;
@ -104,8 +103,4 @@ if (languages.length > 0) {
scale: 102%; scale: 102%;
} }
} }
#info {
margin-top: 2em;
}
</style> </style>