hide right col scrollbar

This commit is contained in:
Martti Malmi 2023-11-23 09:52:19 +02:00
parent 62e99a4ed4
commit f3eb414c6a
2 changed files with 10 additions and 1 deletions

View File

@ -10,7 +10,7 @@ export default function RightColumn() {
<div> <div>
<SearchBox /> <SearchBox />
</div> </div>
<div className="overflow-y-auto"> <div className="overflow-y-auto hide-scrollbar">
<div className="bg-superdark rounded-lg p-2 mt-8"> <div className="bg-superdark rounded-lg p-2 mt-8">
<div className="font-bold text-lg"> <div className="font-bold text-lg">
<FormattedMessage defaultMessage="Trending hashtags" id="CbM2hK" /> <FormattedMessage defaultMessage="Trending hashtags" id="CbM2hK" />

View File

@ -936,3 +936,12 @@ svg.zap-solid {
.light .modal button.secondary:hover { .light .modal button.secondary:hover {
background: #fff !important; background: #fff !important;
} }
.hide-scrollbar {
scrollbar-width: none;
-ms-overflow-style: none;
}
.hide-scrollbar::-webkit-scrollbar {
display: none; /* Safari and Chrome */
}