diff --git a/templates/user/dashboard/repolist.tmpl b/templates/user/dashboard/repolist.tmpl
index 49ea869bf..005e8756f 100644
--- a/templates/user/dashboard/repolist.tmpl
+++ b/templates/user/dashboard/repolist.tmpl
@@ -119,7 +119,7 @@
@@ -173,14 +171,14 @@
-
-
+
{{svg "octicon-organization" 16 "mr-2"}}
${org.name}
${org.num_repos}
- {{svg "octicon-repo" 16 "rear ml-2 mt-1"}}
+ {{svg "octicon-repo" 16 "ml-2 mt-1"}}
diff --git a/web_src/less/_dashboard.less b/web_src/less/_dashboard.less
index c925512f2..1330b04ab 100644
--- a/web_src/less/_dashboard.less
+++ b/web_src/less/_dashboard.less
@@ -156,16 +156,12 @@
background-color: #fcf8e9;
}
- a {
- padding: 6px 1.2em;
+ .repo-list-link {
+ padding: 6px 1em;
display: block;
.svg {
- color: var(--color-secondary-dark-6);
-
- &.rear {
- font-size: 15px;
- }
+ color: var(--color-text-light-2);
}
.star-num {
diff --git a/web_src/less/helpers.less b/web_src/less/helpers.less
index 04c1b6567..83d7b1d70 100644
--- a/web_src/less/helpers.less
+++ b/web_src/less/helpers.less
@@ -32,6 +32,12 @@
.rounded-left { border-radius: var(--border-radius) 0 0 var(--border-radius) !important; }
.rounded-right { border-radius: 0 var(--border-radius) var(--border-radius) 0 !important; }
+.border-secondary { border: 1px solid var(--color-secondary) !important; }
+.border-secondary-top { border-top: 1px solid var(--color-secondary) !important; }
+.border-secondary-bottom { border-bottom: 1px solid var(--color-secondary) !important; }
+.border-secondary-left { border-left: 1px solid var(--color-secondary) !important; }
+.border-secondary-right { border-right: 1px solid var(--color-secondary) !important; }
+
.no-transition { transition: none !important; }
.bg-red { background: var(--color-red) !important; }