summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/content-src/components/Topics/_Topics.scss
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/newtab/content-src/components/Topics/_Topics.scss')
-rw-r--r--browser/components/newtab/content-src/components/Topics/_Topics.scss24
1 files changed, 24 insertions, 0 deletions
diff --git a/browser/components/newtab/content-src/components/Topics/_Topics.scss b/browser/components/newtab/content-src/components/Topics/_Topics.scss
new file mode 100644
index 0000000000..205f42e600
--- /dev/null
+++ b/browser/components/newtab/content-src/components/Topics/_Topics.scss
@@ -0,0 +1,24 @@
+.topics {
+ ul {
+ margin: 0;
+ padding: 0;
+
+ @media (min-width: $break-point-large) {
+ display: inline;
+ padding-inline-start: 12px;
+ }
+ }
+
+ ul li {
+ display: inline-block;
+
+ &::after {
+ content: '•';
+ padding: 8px;
+ }
+
+ &:last-child::after {
+ content: none;
+ }
+ }
+}