Skip to content

Commit

Permalink
Fix responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
iamonuwa committed Jun 22, 2019
1 parent cd9a3bc commit 30cf886
Show file tree
Hide file tree
Showing 92 changed files with 2,108 additions and 223 deletions.
16 changes: 8 additions & 8 deletions package.json
Expand Up @@ -9,8 +9,8 @@
"lint": "vue-cli-service lint",
"start": "npm run serve",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
"test:e2e": "vue-cli-service test:e2e"
// "precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"dependencies": {
"animated-scroll": "0.0.2",
Expand Down Expand Up @@ -41,11 +41,11 @@
"vue-jest": "^3.0.0",
"vue-template-compiler": "^2.5.17"
},
"pre-commit": [
"precommit-msg",
"lint",
"test:e2e",
"test:unit"
],
// "pre-commit": [
// "precommit-msg",
// "lint",
// "test:e2e",
// "test:unit"
// ],
"license": "Apache 2.0"
}
29 changes: 15 additions & 14 deletions src/App.vue
@@ -1,17 +1,17 @@
<template>
<div id="app">
<aside>
<NavBar v-on:toggleSideBar="toggleSideBar" :isSideBarOpen="isSideBarOpen"></NavBar>
<SideBar v-on:toggleSideBar="toggleSideBar" :isSideBarOpen="isSideBarOpen"></SideBar>
</aside>
<header class="toast" :class="{ active: isHeaderActive, error: isToastError() }">
<h1 v-if="status">{{status}}</h1>
<a href="#" @click.prevent="isHeaderActive = false">x</a>
</header>
<router-view></router-view>
<spinner v-if="loading"></spinner>
<login v-if="isLoginOpen" v-on:toggleLoginOpen="togglerLogin"></login>
<signup v-if="isSignupOpen" v-on:toggleSignupOpen="togglerSignup"></signup>
<div class="imusify-app">
<SideBar v-on:toggleSideBar="toggleSideBar" :isSideBarOpen="isSideBarOpen"></SideBar>
<div class="main">
<!-- <NavBar v-on:toggleSideBar="toggleSideBar" :isSideBarOpen="isSideBarOpen"></NavBar>
<header class="toast" :class="{ active: isHeaderActive, error: isToastError() }">
<h1 v-if="status">{{status}}</h1>
<a href="#" @click.prevent="isHeaderActive = false">x</a>
</header> -->
<router-view></router-view>
<spinner v-if="loading"></spinner>
<login v-if="isLoginOpen" v-on:toggleLoginOpen="togglerLogin"></login>
<signup v-if="isSignupOpen" v-on:toggleSignupOpen="togglerSignup"></signup>
</div>
</div>
</template>
<script>
Expand Down Expand Up @@ -80,7 +80,8 @@ export default {
};
</script>
<style lang="scss">
@import "./src/assets/styles/base.scss";
// @import "./src/assets/styles/base.scss";
@import "./src/assets/sass/main.scss";
#app {
.toast {
Expand Down
Binary file added src/assets/fonts/imusify/imu.eot
Binary file not shown.
38 changes: 38 additions & 0 deletions src/assets/fonts/imusify/imu.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/fonts/imusify/imu.ttf
Binary file not shown.
Binary file added src/assets/fonts/imusify/imu.woff
Binary file not shown.
Binary file added src/assets/fonts/roboto/Black/Roboto-Black.ttf
Binary file not shown.
Binary file added src/assets/fonts/roboto/Black/Roboto-Black.woff
Binary file not shown.
Binary file added src/assets/fonts/roboto/Black/Roboto-Black.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/assets/fonts/roboto/Bold/Roboto-Bold.ttf
Binary file not shown.
Binary file added src/assets/fonts/roboto/Bold/Roboto-Bold.woff
Binary file not shown.
Binary file added src/assets/fonts/roboto/Bold/Roboto-Bold.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions src/assets/fonts/roboto/COPYRIGHT.txt
@@ -0,0 +1 @@
Copyright 2011 Google Inc. All Rights Reserved.
13 changes: 13 additions & 0 deletions src/assets/fonts/roboto/DESCRIPTION.en_us.html
@@ -0,0 +1,13 @@
<p>
Roboto has a dual nature.
It has a mechanical skeleton and the forms are largely geometric.
At the same time, the font features friendly and open curves.
While some grotesks distort their letterforms to force a rigid rhythm, Roboto doesn’t compromise, allowing letters to be settled into their natural width.
This makes for a more natural reading rhythm more commonly found in humanist and serif types.
</p>
<p>
This is the regular family, which can be used alongside the <a href="http://www.google.com/fonts/specimen/Roboto+Condensed">Roboto Condensed</a> family and the <a href="http://www.google.com/fonts/specimen/Roboto+Slab">Roboto Slab</a> family.
</p>
<p>
To contribute, see <a href="https://github.com/google/roboto/">github.com/google/roboto</a>
</p>
Binary file added src/assets/fonts/roboto/Italic/Roboto-Italic.ttf
Binary file not shown.
Binary file added src/assets/fonts/roboto/Italic/Roboto-Italic.woff
Binary file not shown.
Binary file not shown.

0 comments on commit 30cf886

Please sign in to comment.