Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Commit 90e08af

Browse files
committed
added specific class
1 parent 201dadd commit 90e08af

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/sass/_common/common.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,11 +772,14 @@ li strong.margin-right {
772772
background-color: $COLOR_GRAY;
773773
}
774774
.name {
775-
text-transform: capitalize !important;
775+
text-transform: capitalize;
776776
color: $COLOR_BLACK;
777777
font-weight: 400;
778778
padding-left: 1rem;
779779
}
780+
.text-capitalize {
781+
text-transform: capitalize !important;
782+
}
780783

781784
@media screen and (max-width: 650px) {
782785
width: 150px;

src/templates/_common/components/elements.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,6 @@ export const Button = ({
267267

268268
export const SocialButton = ({ provider }) => (
269269
<a id={`button_${provider}`} href='javascript:;' className='button-social'>
270-
<span className='name'>{provider}</span>
270+
<span className='name text-capitalize'>{provider}</span>
271271
</a>
272272
);

0 commit comments

Comments
 (0)