We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa15fa commit f5a893cCopy full SHA for f5a893c
olln/src/scss/main.scss
@@ -388,3 +388,25 @@ body:not(.portaltype-imio-smartweb-portalpage) {
388
justify-content: flex-end;
389
}
390
391
+
392
+// Link mark styles in section text
393
+.sectiontext .section-text .body-section mark a {
394
+ background: transparent;
395
+ color: #fff;
396
+ text-decoration: none;
397
+}
398
399
+.sectiontext .section-text .body-section mark a::after {
400
+ content: "";
401
+ position: absolute;
402
+ bottom: 0;
403
+ left: 0;
404
+ width: 50%;
405
+ height: 2px;
406
+ background: #fff;
407
+ transition: width 0.3s ease;
408
409
410
+.sectiontext .section-text .body-section mark a:hover::after {
411
+ width: 100%;
412
0 commit comments