diff options
Diffstat (limited to 'src/components/right_panel.svelte')
| -rw-r--r-- | src/components/right_panel.svelte | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/src/components/right_panel.svelte b/src/components/right_panel.svelte index 9863d97..1aa75c1 100644 --- a/src/components/right_panel.svelte +++ b/src/components/right_panel.svelte @@ -40,13 +40,19 @@ <style> -.right-panel { - width: 20%; - padding: 20px; - background-color: #f8f8f8; - display: flex; - flex-direction: column; -} + .right-panel { + width: 20%; + padding: 20px; + background-color: #f8f8f8; + display: flex; + flex-direction: column; + } + + @media screen and (max-width: 768px) { + .right-panel { + display: none; + } + } .search-bar input { width: 100%; |
