We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfb879b commit 2ef01e1Copy full SHA for 2ef01e1
style.scss
@@ -449,11 +449,21 @@
449
position: relative;
450
padding: 1rem;
451
background-color: #fff;
452
- border: 1px solid #4e3107;
453
- border-right-width: 1.5rem;
+ border-radius: 0.4rem;
454
@include fontface(serif);
455
color: #444;
456
text-align: right;
+
457
+ &:before { // via https://css-tricks.com/gradient-borders-in-css/
458
+ content: '';
459
+ position: absolute;
460
+ top: 0; right: 0; bottom: 0; left: 0;
461
+ z-index: -1;
462
+ margin: -1px; // !important
463
+ margin-right: -1.5rem; // !important
464
+ border-radius: inherit; // !important
465
+ background: linear-gradient(135deg, #d53a9d 15%, #58357a);
466
+ }
467
}
468
469
0 commit comments