@govtechsg/oobee 0.10.70 → 0.10.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/DETAILS.md +1 -1
  2. package/README.md +12 -0
  3. package/S3_UPLOAD_README.md +172 -0
  4. package/dev/runGenerateJustHtmlReport.ts +25 -0
  5. package/package.json +7 -4
  6. package/src/combine.ts +72 -15
  7. package/src/constants/common.ts +91 -93
  8. package/src/constants/constants.ts +536 -59
  9. package/src/crawlers/crawlDomain.ts +313 -305
  10. package/src/crawlers/crawlIntelligentSitemap.ts +24 -18
  11. package/src/crawlers/crawlLocalFile.ts +29 -27
  12. package/src/crawlers/crawlSitemap.ts +265 -254
  13. package/src/crawlers/custom/utils.ts +809 -119
  14. package/src/crawlers/runCustom.ts +29 -4
  15. package/src/generateHtmlReport.ts +224 -0
  16. package/src/mergeAxeResults.ts +133 -46
  17. package/src/runGenerateJustHtmlReport.ts +20 -0
  18. package/src/services/s3Uploader.ts +184 -0
  19. package/src/static/ejs/partials/components/allIssues/AllIssues.ejs +9 -0
  20. package/src/static/ejs/partials/components/allIssues/CategoryBadges.ejs +82 -0
  21. package/src/static/ejs/partials/components/allIssues/FilterBar.ejs +33 -0
  22. package/src/static/ejs/partials/components/allIssues/IssuesTable.ejs +41 -0
  23. package/src/static/ejs/partials/components/header/SiteInfo.ejs +119 -0
  24. package/src/static/ejs/partials/components/header/aboutScanModal/AboutScanModal.ejs +15 -0
  25. package/src/static/ejs/partials/components/header/aboutScanModal/ScanConfiguration.ejs +44 -0
  26. package/src/static/ejs/partials/components/header/aboutScanModal/ScanDetails.ejs +142 -0
  27. package/src/static/ejs/partials/components/prioritiseIssues/IssueDetailCard.ejs +36 -0
  28. package/src/static/ejs/partials/components/prioritiseIssues/PrioritiseIssues.ejs +47 -0
  29. package/src/static/ejs/partials/components/ruleModal/ruleOffcanvas.ejs +196 -0
  30. package/src/static/ejs/partials/components/scannedPagesSegmentedTabs.ejs +48 -0
  31. package/src/static/ejs/partials/components/shared/InfoAlert.ejs +3 -0
  32. package/src/static/ejs/partials/components/{topFive.ejs → topTen.ejs} +2 -2
  33. package/src/static/ejs/partials/components/wcagCompliance/FailedCriteria.ejs +47 -0
  34. package/src/static/ejs/partials/components/wcagCompliance/WcagCompliance.ejs +16 -0
  35. package/src/static/ejs/partials/components/wcagCompliance/WcagGaugeBar.ejs +16 -0
  36. package/src/static/ejs/partials/components/wcagCoverageDetails.ejs +18 -0
  37. package/src/static/ejs/partials/footer.ejs +1 -1
  38. package/src/static/ejs/partials/header.ejs +7 -223
  39. package/src/static/ejs/partials/main.ejs +12 -23
  40. package/src/static/ejs/partials/scripts/allIssues/AllIssues.ejs +376 -0
  41. package/src/static/ejs/partials/scripts/categorySummary.ejs +1 -1
  42. package/src/static/ejs/partials/scripts/header/SiteInfo.ejs +44 -0
  43. package/src/static/ejs/partials/scripts/header/aboutScanModal/AboutScanModal.ejs +51 -0
  44. package/src/static/ejs/partials/scripts/header/aboutScanModal/ScanConfiguration.ejs +127 -0
  45. package/src/static/ejs/partials/scripts/header/aboutScanModal/ScanDetails.ejs +60 -0
  46. package/src/static/ejs/partials/scripts/prioritiseIssues/IssueDetailCard.ejs +137 -0
  47. package/src/static/ejs/partials/scripts/prioritiseIssues/PrioritiseIssues.ejs +214 -0
  48. package/src/static/ejs/partials/scripts/prioritiseIssues/wcagSvgMap.ejs +861 -0
  49. package/src/static/ejs/partials/scripts/ruleModal/constants.ejs +957 -0
  50. package/src/static/ejs/partials/scripts/ruleModal/itemCardRenderer.ejs +353 -0
  51. package/src/static/ejs/partials/scripts/ruleModal/pageAccordionBuilder.ejs +468 -0
  52. package/src/static/ejs/partials/scripts/ruleModal/ruleOffcanvas.ejs +306 -0
  53. package/src/static/ejs/partials/scripts/ruleModal/utilities.ejs +483 -0
  54. package/src/static/ejs/partials/scripts/scannedPagesSegmentedTabs.ejs +35 -0
  55. package/src/static/ejs/partials/scripts/screenshotLightbox.ejs +61 -57
  56. package/src/static/ejs/partials/scripts/topTen.ejs +61 -0
  57. package/src/static/ejs/partials/scripts/utils.ejs +15 -0
  58. package/src/static/ejs/partials/scripts/wcagCompliance/FailedCriteria.ejs +103 -0
  59. package/src/static/ejs/partials/scripts/wcagCompliance/WcagGaugeBar.ejs +47 -0
  60. package/src/static/ejs/partials/scripts/wcagCompliance.ejs +15 -0
  61. package/src/static/ejs/partials/scripts/wcagCoverageDetails.ejs +75 -0
  62. package/src/static/ejs/partials/styles/allIssues/AllIssues.ejs +384 -0
  63. package/src/static/ejs/partials/styles/bootstrap.ejs +17 -1
  64. package/src/static/ejs/partials/styles/header/SiteInfo.ejs +121 -0
  65. package/src/static/ejs/partials/styles/header/aboutScanModal/AboutScanModal.ejs +82 -0
  66. package/src/static/ejs/partials/styles/header/aboutScanModal/ScanConfiguration.ejs +50 -0
  67. package/src/static/ejs/partials/styles/header/aboutScanModal/ScanDetails.ejs +149 -0
  68. package/src/static/ejs/partials/styles/header.ejs +7 -0
  69. package/src/static/ejs/partials/styles/prioritiseIssues/IssueDetailCard.ejs +141 -0
  70. package/src/static/ejs/partials/styles/prioritiseIssues/PrioritiseIssues.ejs +204 -0
  71. package/src/static/ejs/partials/styles/ruleModal/ruleOffcanvas.ejs +456 -0
  72. package/src/static/ejs/partials/styles/scannedPagesSegmentedTabs.ejs +46 -0
  73. package/src/static/ejs/partials/styles/shared/InfoAlert.ejs +12 -0
  74. package/src/static/ejs/partials/styles/styles.ejs +198 -470
  75. package/src/static/ejs/partials/styles/topTenCard.ejs +44 -0
  76. package/src/static/ejs/partials/styles/wcagCompliance/FailedCriteria.ejs +59 -0
  77. package/src/static/ejs/partials/styles/wcagCompliance/WcagGaugeBar.ejs +62 -0
  78. package/src/static/ejs/partials/styles/wcagCompliance.ejs +36 -0
  79. package/src/static/ejs/partials/styles/wcagCoverageDetails.ejs +33 -0
  80. package/src/static/ejs/report.ejs +42 -259
  81. package/src/static/ejs/summary.ejs +1 -1
  82. package/src/utils.ts +30 -0
  83. package/src/static/ejs/partials/components/categorySelector.ejs +0 -4
  84. package/src/static/ejs/partials/components/categorySelectorDropdown.ejs +0 -57
  85. package/src/static/ejs/partials/components/pagesScannedModal.ejs +0 -70
  86. package/src/static/ejs/partials/components/reportSearch.ejs +0 -47
  87. package/src/static/ejs/partials/components/ruleOffcanvas.ejs +0 -105
  88. package/src/static/ejs/partials/components/scanAbout.ejs +0 -328
  89. package/src/static/ejs/partials/components/wcagCompliance.ejs +0 -52
  90. package/src/static/ejs/partials/scripts/categorySelectorDropdownScript.ejs +0 -190
  91. package/src/static/ejs/partials/scripts/reportSearch.ejs +0 -287
  92. package/src/static/ejs/partials/scripts/ruleOffcanvas.ejs +0 -804
  93. package/src/static/ejs/partials/scripts/scanAboutScript.ejs +0 -38
@@ -4547,7 +4547,7 @@
4547
4547
 
4548
4548
  .card-body {
4549
4549
  flex: 1 1 auto;
4550
- padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
4550
+ padding: 1.5rem;
4551
4551
  color: var(--bs-card-color);
4552
4552
  }
4553
4553
 
@@ -7954,14 +7954,26 @@
7954
7954
  width: 25% !important;
7955
7955
  }
7956
7956
 
7957
+ .w-30 {
7958
+ width: 30% !important
7959
+ }
7960
+
7957
7961
  .w-50 {
7958
7962
  width: 50% !important;
7959
7963
  }
7960
7964
 
7965
+ .w-70 {
7966
+ width: 70% !important;
7967
+ }
7968
+
7961
7969
  .w-75 {
7962
7970
  width: 75% !important;
7963
7971
  }
7964
7972
 
7973
+ .w-90 {
7974
+ width: 90% !important;
7975
+ }
7976
+
7965
7977
  .w-100 {
7966
7978
  width: 100% !important;
7967
7979
  }
@@ -8014,6 +8026,10 @@
8014
8026
  min-height: 100vh !important;
8015
8027
  }
8016
8028
 
8029
+ .flex-1 {
8030
+ flex: 1 !important;
8031
+ }
8032
+
8017
8033
  .flex-fill {
8018
8034
  flex: 1 1 auto !important;
8019
8035
  }
@@ -0,0 +1,121 @@
1
+ <style>
2
+ #site-header {
3
+ display: flex;
4
+ flex-wrap: wrap;
5
+ }
6
+
7
+ #site-container {
8
+ display: flex;
9
+ gap: 2rem;
10
+ align-items: center;
11
+ width: 100%;
12
+ }
13
+
14
+ #site-container > div {
15
+ min-width: 0;
16
+ flex-shrink: 1;
17
+ }
18
+
19
+ #site-container > div:nth-child(1),
20
+ #site-container > div:nth-child(2) {
21
+ overflow: hidden;
22
+ }
23
+
24
+ #site-container > div:nth-child(1) {
25
+ max-width: 48ch;
26
+ }
27
+
28
+ #site-container > div:nth-child(2) {
29
+ max-width: 56ch;
30
+ }
31
+
32
+ #site-container > div:nth-child(3) {
33
+ flex-shrink: 0;
34
+ width: auto;
35
+ }
36
+
37
+ #site-container > div:nth-child(1) > div,
38
+ #site-container > div:nth-child(2) {
39
+ overflow: hidden;
40
+ }
41
+
42
+ #siteName {
43
+ overflow: hidden;
44
+ text-overflow: ellipsis;
45
+ white-space: nowrap;
46
+ width: 100%;
47
+ }
48
+
49
+ #siteUrl {
50
+ display: inline-flex !important;
51
+ align-items: center;
52
+ gap: 0.25rem;
53
+ min-width: 0;
54
+ vertical-align: middle;
55
+ }
56
+
57
+ #siteUrl .url-text {
58
+ overflow: hidden;
59
+ text-overflow: ellipsis;
60
+ white-space: nowrap;
61
+ min-width: 0;
62
+ }
63
+
64
+ #siteUrl svg {
65
+ flex-shrink: 0;
66
+ }
67
+
68
+ @media (max-width: 1300px) {
69
+ #site-container {
70
+ flex-direction: column;
71
+ align-items: flex-start;
72
+ gap: 0.5rem;
73
+ }
74
+
75
+ #site-container > div:nth-child(1),
76
+ #site-container > div:nth-child(2) {
77
+ overflow: visible;
78
+ }
79
+
80
+ #site-container > div:nth-child(1) > div {
81
+ overflow: visible;
82
+ }
83
+
84
+ #siteName {
85
+ white-space: normal;
86
+ word-wrap: break-word;
87
+ word-break: break-word;
88
+ overflow: visible;
89
+ }
90
+
91
+ #siteUrl {
92
+ display: inline-flex !important;
93
+ }
94
+
95
+ #siteUrl .url-text {
96
+ white-space: normal;
97
+ word-wrap: break-word;
98
+ word-break: break-word;
99
+ overflow: visible;
100
+ }
101
+ }
102
+
103
+ #site-container svg {
104
+ flex-shrink: 0;
105
+ min-width: 24px;
106
+ min-height: 24px;
107
+ }
108
+
109
+ .label {
110
+ margin-bottom: 0 !important;
111
+ }
112
+
113
+ .link {
114
+ color: var(--a11y-majorelle-blue);
115
+ text-decoration: none;
116
+ }
117
+
118
+ .link:hover {
119
+ text-decoration: underline;
120
+ }
121
+ </style>
@@ -0,0 +1,82 @@
1
+ <style>
2
+ #aboutScanModal {
3
+ --left-col: 320px;
4
+ --gap: 24px;
5
+ --divider: var(--bright-gray);
6
+ --xpad: 1rem;
7
+ }
8
+
9
+ #aboutScanModal .modal-dialog .modal-dialog-centered {
10
+ display: flex;
11
+ align-items: center;
12
+ min-height: calc(90svh - 2rem);
13
+ margin-left: auto;
14
+ margin-right: auto;
15
+ }
16
+
17
+ #aboutScanModal .modal-dialog {
18
+ --bs-modal-width: min(1080px, calc(100vw - 2rem));
19
+ }
20
+
21
+ #aboutScanModal .modal-header {
22
+ border-bottom: 0;
23
+ }
24
+
25
+ #aboutScanModal .modal-header::after {
26
+ content: "";
27
+ position: absolute;
28
+ inset-block: 0;
29
+ left: calc(var(--xpad) + var(--left-col));
30
+ width: 1px;
31
+ background: var(--divider);
32
+ pointer-events: none;
33
+ }
34
+
35
+ #aboutScanModal .modal-body {
36
+ max-height: calc(100vh - 7.5rem);
37
+ overflow-y: auto;
38
+ padding-top: 0;
39
+ }
40
+
41
+ #aboutScanModal .about-scan-divider {
42
+ margin-bottom: 2rem;
43
+ }
44
+
45
+ #aboutScanModal .about-scan-modal-grid {
46
+ position: relative;
47
+ min-height: 0;
48
+ }
49
+
50
+ #aboutScanModal .about-scan-modal-grid::before {
51
+ content: "";
52
+ position: absolute;
53
+ top: 0;
54
+ bottom: 0;
55
+ left: var(--left-col);
56
+ width: 1px;
57
+ background: var(--divider);
58
+ }
59
+
60
+ #view-crawl > h2 {
61
+ line-height: 2rem;
62
+ }
63
+
64
+ #view-wcag > h2 {
65
+ line-height: 2rem;
66
+ }
67
+
68
+ #view-wcag > p {
69
+ margin-top: 1rem;
70
+ margin-bottom: 0;
71
+ }
72
+
73
+ .link-external-icon {
74
+ position: relative; top: -1px;
75
+ }
76
+
77
+ @media (max-width: 991.98px) {
78
+ #aboutScanModal .about-scan-modal-grid::before {
79
+ display: none;
80
+ }
81
+ }
82
+ </style>
@@ -0,0 +1,50 @@
1
+ <style>
2
+ .about-scan-details-right {
3
+ position: absolute;
4
+ top: 0;
5
+ bottom: 0;
6
+ left: calc(var(--left-col) + var(--gap));
7
+ right: 0;
8
+ overflow-y: auto;
9
+ min-height: 0;
10
+ }
11
+
12
+ .about-scan-details-right .unbulleted-list {
13
+ margin: 0;
14
+ padding: 0;
15
+ list-style: none;
16
+ }
17
+
18
+ .about-scan-details-right .unbulleted-list > li {
19
+ padding: 0.4rem 0;
20
+ }
21
+
22
+ .about-scan-details-right .unbulleted-list > li + li {
23
+ border-top: 1px solid var(--divider, --bright-gray);
24
+ }
25
+
26
+ #pagesScannedList > li:first-child {
27
+ padding-top: 0;
28
+ }
29
+
30
+ #pagesScannedList > li:last-child {
31
+ padding-bottom: 0;
32
+ }
33
+
34
+ #pagesScannedList > li > p {
35
+ margin-bottom: 0;
36
+ }
37
+
38
+ .display-url-container {
39
+ flex: 1;
40
+ min-width: 0;
41
+ }
42
+
43
+ @media (max-width: 991.98px) {
44
+ .about-scan-details-right {
45
+ position: static;
46
+ overflow: visible;
47
+ padding: 0;
48
+ }
49
+ }
50
+ </style>
@@ -0,0 +1,149 @@
1
+ <style>
2
+ .website-title {
3
+ word-break: break-word;
4
+ }
5
+
6
+ #scan-about > ul > li:first-child {
7
+ padding-top: 0.5rem;
8
+ }
9
+
10
+ #scan-about ul {
11
+ padding-left: 0;
12
+ }
13
+
14
+ #scan-about li {
15
+ display: flex;
16
+ line-height: 1.1rem;
17
+ margin-bottom: 2rem;
18
+ }
19
+
20
+ #scan-about li > svg {
21
+ flex-shrink: 0;
22
+ margin-left: 0.3rem;
23
+ margin-right: 0.6rem;
24
+ }
25
+
26
+ .about-scan-details-left {
27
+ width: var(--left-col);
28
+ padding-right: var(--gap);
29
+ }
30
+
31
+ .url-scanned-text {
32
+ color: var(--a11y-majorelle-blue);
33
+ word-break: break-word;
34
+ }
35
+
36
+ .wcag-criteria-label {
37
+ text-decoration: none;
38
+ margin-bottom: 0.3rem;
39
+ }
40
+
41
+ .advanced-group {
42
+ display: flex;
43
+ align-items: center;
44
+ margin-bottom: 0 !important;
45
+ }
46
+
47
+ .advanced-group + .advanced-sublist,
48
+ .advanced-group + ul {
49
+ list-style: disc !important;
50
+ margin-left: 3.125rem;
51
+ }
52
+
53
+ .advanced-group + .advanced-sublist li,
54
+ .advanced-group + ul li {
55
+ margin: 0;
56
+ }
57
+
58
+ .advanced-sublist-li {
59
+ display: list-item !important;
60
+ margin-bottom: 0.3rem !important;
61
+ }
62
+
63
+ .advanced-sublist-li:first-child {
64
+ margin-top: 0.5rem !important;
65
+ }
66
+
67
+ .advanced-sublist-li:last-child {
68
+ margin-bottom: 2rem !important;
69
+ }
70
+
71
+ .about-scan-toggle {
72
+ border: none;
73
+ background-color: var(--true-white);
74
+ text-align: left;
75
+ padding: 0;
76
+ text-decoration: none;
77
+ cursor: default;
78
+ display: flex;
79
+ flex-direction: column;
80
+ }
81
+
82
+ .about-scan-toggle:hover {
83
+ text-decoration: none;
84
+ }
85
+
86
+ .about-scan-toggle .about-us-type-of-scan-text {
87
+ color: var(--a11y-majorelle-blue) !important;
88
+ display: inline !important;
89
+ text-decoration: none;
90
+ cursor: pointer;
91
+ }
92
+ .about-scan-toggle:hover .about-us-type-of-scan-text,
93
+ .about-scan-toggle .about-us-type-of-scan-text:focus-visible {
94
+ text-decoration: underline;
95
+ }
96
+
97
+ .about-scan-link{
98
+ color: var(--a11y-majorelle-blue);
99
+ text-decoration: none;
100
+ cursor: pointer;
101
+ }
102
+ .about-scan-link:hover,
103
+ .about-scan-link:focus-visible,
104
+ .about-scan-toggle:hover .about-scan-link {
105
+ text-decoration: underline;
106
+ }
107
+
108
+ .about-scan-link-row {
109
+ display: inline-flex;
110
+ align-items: center;
111
+ gap: 6px;
112
+ line-height: 1.2;
113
+ }
114
+
115
+ .about-scan-link-text {
116
+ color: var(--a11y-majorelle-blue);
117
+ text-decoration: none;
118
+ cursor: pointer;
119
+ }
120
+
121
+ .about-scan-link-text:hover,
122
+ .about-scan-toggle:hover .about-scan-link-text,
123
+ .about-scan-link-text:focus-visible {
124
+ text-decoration: underline;
125
+ }
126
+
127
+ .about-scan-link-chev {
128
+ position: relative;
129
+ top: 0.1rem;
130
+ }
131
+
132
+ .oobee-version-text {
133
+ font-size: 1.125rem;
134
+ font-weight: 600;
135
+ }
136
+
137
+ @media (max-width: 991.98px) {
138
+ #aboutScanModal .modal-dialog{ --bs-modal-width: calc(100vw - 1rem); }
139
+ #aboutScanModal .modal-header::after,
140
+
141
+ .about-scan-details-left{ width:auto; padding-right:0; }
142
+
143
+ #aboutScanModal .modal-dialog.modal-dialog-centered{
144
+ align-items: flex-start;
145
+ min-height: auto;
146
+ }
147
+ }
148
+
149
+ </style>
@@ -0,0 +1,7 @@
1
+ <style>
2
+ .header-title {
3
+ padding-bottom: 0 !important;
4
+ margin-bottom: 0;
5
+ color: var(--true-white) !important;
6
+ }
7
+ </style>
@@ -0,0 +1,141 @@
1
+ <style>
2
+ .issue-detail-card {
3
+ width: 40%;
4
+ max-width: 500px;
5
+ background: var(--true-white);
6
+ border-radius: 5px;
7
+ padding: 24px;
8
+ align-self: flex-start;
9
+ border: 1px solid var(--soft-blue);
10
+ box-shadow: 0 2px 4px 0 rgb(77, 52, 191, 10%);
11
+ }
12
+
13
+ .issue-detail-content {
14
+ display: flex;
15
+ flex-direction: column;
16
+ gap: 0.75rem;
17
+ }
18
+
19
+ .issue-detail-image-container {
20
+ width: 100%;
21
+ height: 200px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: center;
25
+ overflow: hidden;
26
+ margin-bottom: 0.75rem;
27
+ }
28
+
29
+ .issue-detail-image {
30
+ max-width: 100%;
31
+ max-height: 100%;
32
+ object-fit: contain;
33
+ }
34
+
35
+ .issue-detail-title {
36
+ font-size: 1.125rem !important;
37
+ font-weight: 700 !important;
38
+ line-height: 1.3 !important;
39
+ margin: 0;
40
+ }
41
+
42
+ .issue-detail-section-label {
43
+ font-size: 14px;
44
+ font-weight: 600;
45
+ margin: 0 0 8px 0;
46
+ }
47
+
48
+ .issue-detail-conformance {
49
+ display: flex;
50
+ flex-direction: row;
51
+ gap: 8px;
52
+ }
53
+
54
+ .issue-detail-conformance-badges {
55
+ display: flex;
56
+ gap: 8px;
57
+ flex-wrap: wrap;
58
+ }
59
+
60
+ .issue-detail-conformance-badge {
61
+ display: inline-flex;
62
+ align-items: center;
63
+ justify-content: center;
64
+ border-radius: 5px;
65
+ border: 1px solid var(--a11y-black-100);
66
+ font-size: 12px;
67
+ padding: 0 4px;
68
+ width: fit-content;
69
+ height: 20px;
70
+ font-weight: 700;
71
+ }
72
+
73
+ .mustfix-badge-label {
74
+ display: inline-flex;
75
+ align-items: center;
76
+ justify-content: center;
77
+ background: var(--light-carmine-pink);
78
+ color: var(--true-white);
79
+ border-radius: 5px;
80
+ border: 1px solid var(--light-carmine-pink);
81
+ font-size: 12px;
82
+ font-weight: 600;
83
+ padding: 0 4px;
84
+ width: fit-content;
85
+ height: 20px;
86
+ }
87
+
88
+ .info-alert {
89
+ font-size: 1rem !important;
90
+ line-height: 1.5 !important;
91
+ }
92
+
93
+ .disability-text {
94
+ font-weight: 600;
95
+ color: var(--dark-orange) !important;
96
+ }
97
+
98
+ .btn-view-issue-details {
99
+ display: flex;
100
+ align-items: center;
101
+ justify-content: center;
102
+ background: transparent;
103
+ border: none;
104
+ font-size: 16px;
105
+ width: fit-content;
106
+ gap: 8px;
107
+ margin: 0 auto;
108
+ }
109
+
110
+ .btn-view-issue-details:hover {
111
+ text-decoration: underline;
112
+ }
113
+
114
+ .prioritise-issues-container {
115
+ display: flex;
116
+ gap: 24px;
117
+ align-items: flex-start;
118
+ margin-top: 20px;
119
+ }
120
+
121
+ .prioritise-issues-main {
122
+ flex: 1;
123
+ min-width: 0;
124
+ align-self: stretch;
125
+ }
126
+
127
+ @media (max-width: 1024px) {
128
+ .prioritise-issues-container {
129
+ flex-direction: column;
130
+ }
131
+
132
+ .issue-detail-card {
133
+ width: 100%;
134
+ max-width: 100%;
135
+ }
136
+
137
+ .prioritise-issues-main {
138
+ width: 100%;
139
+ }
140
+ }
141
+ </style>