Less colors

This commit is contained in:
Dane Everitt 2018-09-11 19:23:22 -07:00
parent 395a2860e7
commit dae780249f
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
2 changed files with 1 additions and 12 deletions

View file

@ -1,9 +1,6 @@
<template>
<div class="server-card animated-fade-in hover:shadow-md">
<div class="content h-32 relative" :class="{
'is-online': status === 'online',
'is-offline': status === 'offline'
}">
<div class="content h-32 relative">
<router-link :to="link">
<h2 class="text-xl flex flex-row items-center mb-2">
<div class="identifier-icon select-none" :class="{

View file

@ -82,14 +82,6 @@ code {
& > .content {
@apply .border .border-grey-light .bg-white .no-underline .block .text-black .p-4;
border-top: 4px solid config('colors.grey-light') !important;
&.is-online {
border-top-color: config('colors.green') !important;
}
&.is-offline {
border-top-color: config('colors.red') !important;
}
}
& > .footer {