Revert "Move classes"

This reverts commit 42d8acb12b.
This commit is contained in:
Oliver Davies 2018-11-20 02:46:01 +00:00
parent 56b7a22cae
commit 46488ade7b
2 changed files with 4 additions and 3 deletions

View file

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

View file

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