3-column layout #699

Merged
mmalmi merged 68 commits from mmalmi/snort:main into main 2023-11-27 15:22:53 +00:00
2 changed files with 10 additions and 1 deletions
Showing only changes of commit f3eb414c6a - Show all commits

View File

@ -10,7 +10,7 @@ export default function RightColumn() {
<div>
<SearchBox />
</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="font-bold text-lg">
<FormattedMessage defaultMessage="Trending hashtags" id="CbM2hK" />

View File

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