Move classes

This commit is contained in:
Oliver Davies 2018-11-20 01:35:46 +00:00
parent 3c361d7031
commit 42d8acb12b
2 changed files with 3 additions and 4 deletions

View file

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<html lang="en" class="h-full">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
@ -7,7 +7,7 @@
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>Drupal Bartik clone using Vue.js and Tailwind CSS</title>
</head>
<body class="text-black bg-black text-sm leading-normal">
<body class="h-full">
<noscript>
<strong>We're sorry but tailwind-bartik doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>

View file

@ -1,5 +1,5 @@
<template>
<div id="app">
<div id="app" class="h-full text-black bg-black text-sm leading-normal">
<WelcomeToDrupal version="8.6.3"/>
</div>
</template>
@ -8,7 +8,6 @@
import WelcomeToDrupal from './components/WelcomeToDrupal.vue'
export default {
name: 'app',
components: {
WelcomeToDrupal,
}