Skip to content

Commit

Permalink
fix: fixes missing list-style none on the flat list error message css…
Browse files Browse the repository at this point in the history
… class

fix: changes font-weight from medium to 500
  • Loading branch information
edusig committed Apr 25, 2023
1 parent 0773402 commit ed0ef68
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blb-ventures/react-flat-list",
"version": "0.6.3",
"version": "0.6.4",
"description": "",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
Expand Down
7 changes: 4 additions & 3 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

.flat-list-item-content-left-title {
word-break: break-all;
font-weight: medium;
font-weight: 500;
}

.flat-list-item-content-left-subtitle {
Expand Down Expand Up @@ -81,8 +81,9 @@
}

.flat-list-error-message {
list-style: none;
background-color: rgb(243, 244, 246);
font-weight: medium;
font-weight: 500;
color: rgb(220, 38, 38);
}

Expand All @@ -107,5 +108,5 @@
.flat-list-subheader-title {
font-size: 1.25rem/* 20px */;
line-height: 1.75rem/* 28px */;
font-weight: medium;
font-weight: 500;
}

0 comments on commit ed0ef68

Please sign in to comment.