1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * DreamTime.
- * Copyright (C) DreamNet. All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License 3.0 as published by
- * the Free Software Foundation. See <https://www.gnu.org/licenses/gpl-3.0.html>
- *
- * Written by Ivan Bravo Bravo <ivan@dreamnet.tech>, 2019.
- */
-
- .notification {
- @apply mb-4 py-2 px-4 border-2 border-dark-100 rounded-sm;
- @apply bg-transparent text-generic-500 text-sm;
-
- a {
- @apply underline;
- }
-
- &.notification--warning {
- @apply text-warning-400 border-warning;
- }
-
- &.notification--danger {
- @apply text-danger-400 border-danger;
- }
-
- &.notification--success {
- @apply text-success-400 border-success;
- }
-
- .icon {
- @apply mr-2;
- }
- }
|