Fix sidebar height
This commit is contained in:
parent
3a11057b74
commit
a8cf8356b1
|
@ -1,5 +1,5 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en" class="h-full">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
@ -7,11 +7,11 @@
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||||
<title>rebuilding-acquia</title>
|
<title>rebuilding-acquia</title>
|
||||||
</head>
|
</head>
|
||||||
<body class="bg-grey-lighter font-sans">
|
<body class="bg-grey-lighter font-sans min-h-full flex flex-col flex-1">
|
||||||
<noscript>
|
<noscript>
|
||||||
<strong>We're sorry but rebuilding-acquia doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
<strong>We're sorry but rebuilding-acquia doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||||
</noscript>
|
</noscript>
|
||||||
<div id="app"></div>
|
<div id="app" class="flex flex-1 flex-col h-full"></div>
|
||||||
<!-- built files will be auto injected -->
|
<!-- built files will be auto injected -->
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app" class="flex flex-col flex-1">
|
||||||
<router-view></router-view>
|
<router-view class="flex flex-col flex-1"></router-view>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="flex flex-row-reverse h-full">
|
<div class="flex flex-row-reverse flex-1 h-full">
|
||||||
<div class="flex-1 p-4 lg:p-12">
|
<div class="flex-1 p-4 lg:p-12">
|
||||||
<div class="mb-6">
|
<div class="mb-6">
|
||||||
<div class="lg:flex lg:items-baseline mb-12">
|
<div class="lg:flex lg:items-baseline mb-12">
|
||||||
|
|
Reference in a new issue