Skip to content
Snippets Groups Projects
Commit f08bcbd9 authored by xaralis's avatar xaralis
Browse files

feat: add .text-shadow-* utility class

parent c2f324f5
No related branches found
No related tags found
No related merge requests found
<div>
<h1 class="head-alt-xl text-shadow-xs">{{ headline.short }}</h1>
<h1 class="head-alt-xl text-shadow-sm">{{ headline.short }}</h1>
<h1 class="head-alt-xl text-shadow">{{ headline.short }}</h1>
<h1 class="head-alt-xl text-shadow-md">{{ headline.short }}</h1>
<h1 class="head-alt-xl text-shadow-lg">{{ headline.short }}</h1>
</div>
@responsive {
.text-shadow-xs {
text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}
.text-shadow-sm {
text-shadow: 1px 1px .25rem rgba(0, 0, 0, 0.3)
}
.text-shadow {
text-shadow: 1px 1px .25rem rgba(0, 0, 0, 0.3);
}
.text-shadow-md {
text-shadow: 1px 1px .5rem rgba(0, 0, 0, 0.5);
}
.text-shadow-lg {
text-shadow: 1px 1px .5rem rgba(0, 0, 0, 0.8);
}
}
...@@ -36,6 +36,7 @@ ...@@ -36,6 +36,7 @@
@import "./atoms/social-icon.pcss"; @import "./atoms/social-icon.pcss";
@import "./atoms/super-button.pcss"; @import "./atoms/super-button.pcss";
@import "./atoms/table.pcss"; @import "./atoms/table.pcss";
@import "./atoms/text-shadow.pcss";
@import "./atoms/tooltip.pcss"; @import "./atoms/tooltip.pcss";
@import "./molecules/article-card.pcss"; @import "./molecules/article-card.pcss";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment