aboutsummaryrefslogtreecommitdiff
path: root/app/views/components
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2020-02-21 19:59:34 -0500
committerThedro Neely <thedroneely@gmail.com>2020-02-21 19:59:34 -0500
commitda753c1502925961f591853ed868a9afd2a25388 (patch)
tree41185269ba9918fd61590e517115da2edfc167ee /app/views/components
parent37baab0e36d576fd58b7052767f7b0e428aff8b8 (diff)
downloadthedroneely.com-da753c1502925961f591853ed868a9afd2a25388.tar.gz
thedroneely.com-da753c1502925961f591853ed868a9afd2a25388.tar.bz2
thedroneely.com-da753c1502925961f591853ed868a9afd2a25388.zip
app/views/components/theme-toggle: Hide icons on mobile view
Diffstat (limited to 'app/views/components')
-rw-r--r--app/views/components/theme-toggle.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/components/theme-toggle.php b/app/views/components/theme-toggle.php
index ea726bc..60b9ace 100644
--- a/app/views/components/theme-toggle.php
+++ b/app/views/components/theme-toggle.php
@@ -12,7 +12,7 @@
type="submit"
value="light"
>
- <?php echo featherIcon('sun'); ?>
+ <?php echo featherIcon('sun', 'is-hidden-mobile'); ?>
<span>Light</span>
</button>
@@ -25,7 +25,7 @@
type="submit"
value="dark"
>
- <?php echo featherIcon('moon'); ?>
+ <?php echo featherIcon('moon', 'is-hidden-mobile'); ?>
<span>Dark</span>
</button>