diff --git a/src/components/PreviewPanel.vue b/src/components/PreviewPanel.vue index 6187a4324..a415ae9a4 100644 --- a/src/components/PreviewPanel.vue +++ b/src/components/PreviewPanel.vue @@ -1,6 +1,7 @@ @@ -21,6 +22,18 @@ export default { min-width: 260px; width: 20%; padding: 0 30px; + display: flex; + flex-direction: column; +} + +.preview-panel > img { + width: 90%; + max-width: 256px; +} + +.preview-panel > p { + text-align: center; + font-size: 24px; } \ No newline at end of file diff --git a/src/style.css b/src/style.css index 8ed7c2058..30870bb4f 100644 --- a/src/style.css +++ b/src/style.css @@ -20,3 +20,11 @@ a:hover, a:focus { color: #0a6ebd; text-decoration: underline; } + +.shadow { + box-shadow: 0 2px 5px rgba(0,0,0,.1); +} + +#app { + height: 100%; +} \ No newline at end of file diff --git a/src/views/Home.vue b/src/views/Home.vue index 5337d5795..b7bc11fe4 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -1,5 +1,5 @@