Browse Source

added candy striping to CVAS form

master
Spencer Flagg 3 years ago
parent
commit
5866c20416
1 changed files with 7 additions and 3 deletions
  1. +7
    -3
      pages/flights.vue

+ 7
- 3
pages/flights.vue View File

@ -939,14 +939,18 @@ span.badge--avail {
.btn:disabled {
opacity: 0.2;
background: #ddd;
background-color: #ddd;
color: #222;
cursor: not-allowed;
pointer-events: none;
}
.input--error {
box-shadow: 0 0 0 0.2rem red;
.form-row input.input--error {
--stripe1: #ff69b433;
--stripe2: #eee;
// box-shadow: 0 0 0 0.2rem red;
background: linear-gradient(135deg, var(--stripe1) 25%, var(--stripe2) 25%, var(--stripe2) 50%, var(--stripe1) 50%, var(--stripe1) 75%, var(--stripe2) 75%, var(--stripe2) 100%), var(--stripe2);
background-size: 56.57px 56.57px;
}
.alert--error {

Loading…
Cancel
Save