From 90533da8ca9cd5cc187223f90ee4c4c54fe5afce Mon Sep 17 00:00:00 2001 From: logical-1985516 <107944536+logical-1985516@users.noreply.github.com> Date: Tue, 16 Jul 2024 16:06:24 +0800 Subject: [PATCH 1/2] [#1981] Change link to link to all first timer issues (#2233) The link under 'Workflow' section of DG only links to frontend and backend issues. Let's link them to all types of first timer issues so that new contributors do not miss out on some other types of issues, such as DevOps. --- docs/dg/workflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dg/workflow.md b/docs/dg/workflow.md index af167be466..9e71e0ebba 100644 --- a/docs/dg/workflow.md +++ b/docs/dg/workflow.md @@ -26,7 +26,7 @@ Our workflow is mostly based on the guidelines given at se-education.org/guides. ## Find the suitable pull requests -* If you are contributing to RepoSense for the first time, you can check the list of [backend issues](https://github.com/reposense/RepoSense/issues?q=is%3Aopen+is%3Aissue+label%3Aa-Backend+label%3Ad.FirstTimers) or [frontend issues](https://github.com/reposense/RepoSense/issues?q=is%3Aopen+is%3Aissue+label%3Ad.FirstTimers+label%3Aa-FrontEnd) for first timers. +* If you are contributing to RepoSense for the first time, you can check the list of [issues that are suitable for first timers](https://github.com/reposense/RepoSense/issues?q=is%3Aopen+is%3Aissue+label%3Ad.FirstTimers). From dd0c13e32f8805700c24252bfa82e5d86f8814d8 Mon Sep 17 00:00:00 2001 From: jedkohjk <110604064+jedkohjk@users.noreply.github.com> Date: Wed, 24 Jul 2024 23:32:23 +0800 Subject: [PATCH 2/2] Align right panel with welcome title (#2229) Align panel titles The title text on the left panel is not flushed to the top because it is a header. There are several types of title texts on the right panel. Initially, some were headers and others were not. There was padding to ensure that those which were not headers were not flushed to the top. However, this meant that those headers were lower than expected and not aligned. To align the texts, let us remove the padding for the right panel and set the first element on the right panel as a header. --- frontend/src/styles/panels.scss | 2 +- frontend/src/views/c-authorship.vue | 17 +++++++++-------- frontend/src/views/c-zoom.vue | 23 ++++++++++++----------- 3 files changed, 22 insertions(+), 20 deletions(-) diff --git a/frontend/src/styles/panels.scss b/frontend/src/styles/panels.scss index 7432371be2..42d13b401e 100644 --- a/frontend/src/styles/panels.scss +++ b/frontend/src/styles/panels.scss @@ -2,7 +2,7 @@ @import 'z-indices'; .panel-padding { - padding: 2rem 1.5rem 2rem 2.2rem; + padding: 0 1.5rem 2rem 2.2rem; } #app-wrapper { diff --git a/frontend/src/views/c-authorship.vue b/frontend/src/views/c-authorship.vue index 7e3ef1007d..104ccc5cc6 100644 --- a/frontend/src/views/c-authorship.vue +++ b/frontend/src/views/c-authorship.vue @@ -1,13 +1,14 @@