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

fix autocomplete in footer #649

Merged
merged 2 commits into from
Sep 14, 2022
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
2 changes: 1 addition & 1 deletion frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,7 @@ Other button classes are defined further down together with other classes for th
padding: 1rem;
background-color: hsl(0deg 0% 97%);
display: flex;
align-items: flex-end;
}

.favorites-container {
Expand Down Expand Up @@ -490,7 +491,6 @@ Other button classes are defined further down together with other classes for th
.quick-add {
align-items: flex-end;
display: flex;
height: 100%;
}

.quick-add-input {
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/pages/Help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ export const Help = () => {
<p className="help-info">
In order to add a new row, you first find an issue by using its id or
it's subject, and then select an activity, which will be linked to the
issue. After selecting your desired issue and clicking on the plus
button, a new row will be appended to the bottom of the list of recent
rows.
issue. After selecting your desired issue and clicking on the "Add
row"-button, a new row will be appended to the bottom of the list of
recent rows.
</p>
<QuickAdd addIssueActivity={() => {}}></QuickAdd>
<h2 className="help-subtitle">The sum row</h2>
Expand Down