Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Exclamation Mark for Mobile #201

Merged
merged 2 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ $heading-font-size: 1.75rem;
}

.bang {
display: none;
margin-right: $mobile-item-padding-x - 0.4375;
}

Expand All @@ -40,8 +41,9 @@ $heading-font-size: 1.75rem;
.card {
padding: $item-padding-y $item-padding-x;
}

.bang {
display: block;
margin-right: $item-padding-x - 0.4375;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function ApiResources() {
<HeadingCard
title="API Resources"
description="Application Programming Interface (API) are interfaces or
communication protocol that simplifies implementation and maintenance
communication protocols that simplify implementation and maintenance
of software. In order to access most API's, many languages use
HTTP protocol to communicate with the servers that host the API and
retrieve data."
Expand Down
Loading