grim/devweb

fix some alignment
draft
2021-01-23, Gary Kramlich
cb7e5da597b8
Parents 72c85415b1e2
Children b0674226270e
fix some alignment
--- a/frontend/public/index.html Sat Jan 23 02:09:09 2021 -0600
+++ b/frontend/public/index.html Sat Jan 23 02:35:40 2021 -0600
@@ -10,7 +10,7 @@
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
- <div id="app" class="h-full flex flex-column items-stretch"></div>
+ <div id="app" class="h-full flex flex-col items-stretch"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
--- a/frontend/src/components/Contents.vue Sat Jan 23 02:09:09 2021 -0600
+++ b/frontend/src/components/Contents.vue Sat Jan 23 02:35:40 2021 -0600
@@ -1,5 +1,5 @@
<template>
- <div class="h-full flex items-stretch">
+ <div class="h-full flex flex-row items-stretch">
<Navigation/>
<Viewer/>
</div>
--- a/frontend/src/components/Viewer.vue Sat Jan 23 02:09:09 2021 -0600
+++ b/frontend/src/components/Viewer.vue Sat Jan 23 02:35:40 2021 -0600
@@ -1,5 +1,5 @@
<template>
- <iframe :src="src" ref="iframe" @load="update"></iframe>
+ <iframe class="w-full" :src="src" ref="iframe" @load="update"></iframe>
</template>
<script>