mirror of
https://github.com/supabase/supabase.git
synced 2026-06-03 03:11:35 +08:00
Bump of supabase-js brought warning concerning not provided session storage option. Therefore switched to SupabaseClient creation via auth-helpers-nextjs which means switching from localStrage to cookieStorage.
29 lines
371 B
SCSS
29 lines
371 B
SCSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body,
|
|
#__next,
|
|
.main {
|
|
max-height: 100vh;
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
.channel-list {
|
|
li a:before {
|
|
content: '# ';
|
|
opacity: 0.5;
|
|
}
|
|
li a:hover {
|
|
opacity: 0.9;
|
|
}
|
|
}
|
|
.Messages {
|
|
overflow: auto;
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
}
|