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 fb5e28e commit 1c6eea2
Show file tree
Hide file tree
Showing 92 changed files with 2,131 additions and 203 deletions.
7 changes: 0 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"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",
"deploy": "npm run build && python ./s3deploy-production.py"
},
"dependencies": {
Expand Down Expand Up @@ -43,11 +42,5 @@
"vue-jest": "^3.0.0",
"vue-template-compiler": "^2.5.17"
},
"pre-commit": [
"precommit-msg",
"lint",
"test:e2e",
"test:unit"
],
"license": "Apache 2.0"
}
30 changes: 15 additions & 15 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,18 +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 :isSideBarOpen="isSideBarOpen" :class="{ isSideBarOpen: isSideBarOpen }">
</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 @@ -81,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";
/* width */
::-webkit-scrollbar {
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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copyright 2011 Google Inc. All Rights Reserved.
13 changes: 13 additions & 0 deletions src/assets/fonts/roboto/DESCRIPTION.en_us.html
Original file line number Diff line number Diff line change
@@ -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 1c6eea2

Please sign in to comment.