Browse Source

move CSS near component

pull/342/head
Guillaume Vincent 8 years ago
parent
commit
ed4e3998a8
2 changed files with 15 additions and 14 deletions
  1. +0
    -13
      src/App.css
  2. +15
    -1
      src/components/LessPass.vue

+ 0
- 13
src/App.css View File

@@ -7,17 +7,4 @@ body {
background: #008ed6 fixed top;
background-size: cover;
margin: 0;
}

* {
border-radius: 0 !important;
}

.white-link {
color: white;
}

.white-link:hover, .white-link:focus, .white-link:active {
text-decoration: none;
color: white;
}

+ 15
- 1
src/components/LessPass.vue View File

@@ -1,5 +1,19 @@
<style>
#lesspass .white-link {
color: white;
}

#lesspass .white-link:hover, #lesspass .white-link:focus, #lesspass .white-link:active {
text-decoration: none;
color: white;
}

#lesspass * {
border-radius: 0 !important;
}
</style>
<template>
<div class="card" style="border:none;">
<div id="lesspass" class="card" style="border:none;">
<lesspass-menu></lesspass-menu>
<div class="card-block" style="min-height: 400px;">
<router-view></router-view>


Loading…
Cancel
Save