Bladeren bron

move CSS near component

pull/342/head
Guillaume Vincent 8 jaren geleden
bovenliggende
commit
ed4e3998a8
2 gewijzigde bestanden met toevoegingen van 15 en 14 verwijderingen
  1. +0
    -13
      src/App.css
  2. +15
    -1
      src/components/LessPass.vue

+ 0
- 13
src/App.css Bestand weergeven

@@ -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 Bestand weergeven

@@ -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>


Laden…
Annuleren
Opslaan