Skip to content

Commit

Permalink
chore: resolving the issue of text-indent not being applied on mobile…
Browse files Browse the repository at this point in the history
… devices (#4918)

Signed-off-by: NaYeong,Kim <[email protected]>
  • Loading branch information
skdud4659 authored Oct 29, 2024
1 parent 2307ca3 commit 4a5e8c2
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
class="header-img"
color="inherit transparent"
/>
{{ headerTitle }}
<span class="header-title">{{ headerTitle }}</span>
</span>
</slot>
<p-icon-button v-if="!hideHeaderCloseButton"
Expand Down Expand Up @@ -308,6 +308,12 @@ export default defineComponent<ButtonModalProps>({
.modal-alert {
@apply text-red-400;
}
@screen mobile {
.header-title {
text-indent: 2rem;
}
}
}
}
Expand Down

0 comments on commit 4a5e8c2

Please sign in to comment.