Skip to content

Commit

Permalink
[frontend] chore: Fix playwright locators
Browse files Browse the repository at this point in the history
  • Loading branch information
helloitsdave committed Feb 12, 2024
1 parent f5bface commit 1500967
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,16 @@ body {
min-height: 250px;
align-items: center;
margin: 10px;
justify-content: space-between;
height: 100%;
}

.notes-header {
display: flex;
justify-content: flex-end;
}

.notes-header button {
color: crimson;
}

h2 {
Expand All @@ -51,9 +56,10 @@ h2 {

.app-header {
display: flex;
justify-content: space-evenly;
flex-direction: column;
justify-content: center;
align-items: center;
width: 50%;
width: 100%;
margin-bottom: 20px;
}

Expand Down Expand Up @@ -99,7 +105,7 @@ textarea {

.notes-header button{
border-radius: 5px;
background-color: rgb(64, 154, 184);
background-color: coral;
border: none;
padding: 8px;
font-size: 10px;
Expand Down Expand Up @@ -128,6 +134,7 @@ textarea {

.notes-grid {
margin-top: 20px;
width: 100%;
}

.connection-warning {
Expand All @@ -144,4 +151,10 @@ textarea {
justify-content: center;
align-items: center;
margin-top: 20px;
}
}

.note-updated {
color: green;
font-size: 14px;
}

1 comment on commit 1500967

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage for this commit

100.00%

Coverage Report
FileBranchesFuncsLinesUncovered Lines
src
   App.tsx100%100%100%
src/api
   apiService.ts100%100%100%
src/components
   Note.tsx100%100%100%
   NoteForm.tsx100%100%100%
   NoteGrid.tsx100%100%100%
   Spinner.tsx100%100%100%

Please sign in to comment.