Skip to content

Commit

Permalink
Edit: node module react-datepicker CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
LVivona committed Dec 8, 2022
1 parent 793b88c commit c1b4f6b
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,42 @@ KEYCLOAK_SERVER_HOST=your_local_machine_ip_from_internet_settings
KEYCLOAK_SERVER_PUBLIC_KEY=key_from_keycloak_admin_console
```

### Updated node module css (node_modules/react-datepicker/dist/react-datepicker.css)
```
.react-datepicker__close-icon::after {
cursor: pointer;
background-color: transparent;
color: rgba(0, 0, 0, 0.774);
font-weight: bolder;
border-radius: 50%;
height: 16px;
width: 16px;
padding: 2px;
font-size: 16px;
line-height: 1;
text-align: center;
display: table-cell;
vertical-align: middle;
content: "×";
}
.react-datepicker__close-icon::after:hover {
cursor: pointer;
background-color: transparent;
color: rgb(0, 0, 0);
font-weight: bolder;
border-radius: 50%;
height: 16px;
width: 16px;
padding: 2px;
font-size: 16px;
line-height: 1;
text-align: center;
display: table-cell;
vertical-align: middle;
content: "×";
}
```

You may also need to change some Docker options to give your containers (specifically `api`) enough memory to run (~4gb).

0 comments on commit c1b4f6b

Please sign in to comment.