_utilities.scss 224 Bytes
Newer Older
Trần Anh Phú's avatar
Trần Anh Phú committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
@layer utilities {
  .text-error {
    color: #ff4d4f;
  }

  .required::after {
    content: " (*) ";
    color: red;
  }

  .bg-warning {
    background-color: orange;
    color: white;
    border: rgb(218, 141, 0);
  }
}