Skip to content

Commit

Permalink
chore: self review typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JuroUhlar committed Jan 15, 2024
1 parent e74e1e4 commit 785afdf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/client/bot-firewall/botFirewallComponents.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@
}

/**
* Desktop (table) layout
*/
* Desktop (table) layout
*/
.botVisitsTable {
// Hide on small screens
@include media('<=920px') {
Expand Down Expand Up @@ -144,8 +144,8 @@
}

/**
* Cards (mobile) layout
*/
* Cards (mobile) layout
*/
.cards {
// Hide on big screens
@include media('>920px') {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/bot-firewall/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export const BotFirewall: NextPage<CustomPageProps> = ({ embed }) => {
</tbody>
</table>

{/* Display bot visits as **CARDS** only on large screens */}
{/* Display bot visits as **CARDS** only on small screens */}
<div className={styles.cards}>
{botVisits?.slice(0, displayedVisits).map((botVisit) => {
return (
Expand Down

0 comments on commit 785afdf

Please sign in to comment.