Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

Fix: dev tools at minimum window width #563

Merged
merged 1 commit into from
Oct 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions app/components/status-bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ import styled from 'styled-components'
import bytes from 'prettier-bytes'

const Bar = styled.div`
position: absolute;
position: fixed;
left:0;
bottom: 0;
width: 100%;
width: 100vw;
padding: 0.5rem 1rem 0.75rem;
background-color: var(--color-neutral-04);
color: var(--color-neutral-60);
Expand Down
5 changes: 5 additions & 0 deletions static/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,14 @@ time, mark, audio, video {
border: 0;
}

html {
overflow: auto;
}

body {
line-height: 1.5;
overflow: hidden;
min-width: 800px;
}

main {
Expand Down