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

Commit

Permalink
Merge pull request #563 from dat-land/fix/minimum_window_width
Browse files Browse the repository at this point in the history
Fix: dev tools at minimum window width
  • Loading branch information
martinheidegger authored Oct 19, 2018
2 parents 7f40bc6 + c999bd2 commit cdc4802
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
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

0 comments on commit cdc4802

Please sign in to comment.