More fixes

This commit is contained in:
Dane Everitt 2019-02-09 14:48:47 -08:00
parent 6e26f1929d
commit e62e3babcc
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
15 changed files with 25 additions and 25 deletions

View file

@ -35,7 +35,7 @@
@apply .border .border-neutral-400 .text-neutral-600;
&:hover:enabled {
@apply .borderneutral-500s.text-neutral-800;
@apply .border-neutral-500 .text-neutral-800;
}
&.btn-red:hover:enabled {

View file

@ -68,7 +68,7 @@
@apply .px-4 .py-3 .mb-6 .rounded .bg-white .text-neutral-800 .shadow-md;
& a {
@apply .no-underline .text-blue;
@apply .no-underline .text-primary-500;
transition: color 50ms ease-in;
&:hover {

View file

@ -40,7 +40,7 @@ input[type=number] {
}
.input-open > label {
@apply .block .uppercase .tracking-wide .textneutral-500s.text-xs .mb-2 .absolute;
@apply .block .uppercase .tracking-wide .text-neutral-500 .text-xs .mb-2 .absolute;
top: 14px;
transition: transform 200ms ease-out;
}
@ -61,7 +61,7 @@ input[type=number] {
}
&.error {
@apply .text-red-600 .border-red;
@apply .text-red-600 .border-red-500;
}
}
@ -70,7 +70,7 @@ input[type=number] {
}
.input-help {
@apply .text-xs .textneutral-500s.pt-2;
@apply .text-xs .text-neutral-500 .pt-2;
&.error {
@apply .text-red-600;

View file

@ -11,18 +11,18 @@ code {
* Indicators for server online status.
*/
.indicator {
@apply .bg-neutral-800 .border .border-grey;
@apply .bg-neutral-800 .border .border-primary-500;
border-radius: 50%;
width: 16px;
height: 16px;
&.online {
@apply .bg-green-600 .border-green;
@apply .bg-green-600 .border-green-500;
animation: onlineblink 2s infinite alternate;
}
&.offline {
@apply .bg-green-600 .border-red;
@apply .bg-green-600 .border-red-500;
animation: offlineblink 2s infinite alternate;
}
}
@ -34,7 +34,7 @@ code {
@apply .flex-1 .text-center .relative;
& > .indicator-title {
@apply .text-xs .uppercase .font-hairline .bg-white .absolute .text-grey;
@apply .text-xs .uppercase .font-hairline .bg-white .absolute .text-primary-500;
margin-top:-9px;
padding: 0 8px;
left: 50%;

View file

@ -40,7 +40,7 @@
@apply .bg-yellow-600 .border-yellow-800 .text-yellow-50;
& > .title {
@apply .bg-yellow;
@apply .bg-yellow-500;
}
}
}