diff --git a/sass/_project-sass/_project-Main.scss b/sass/_project-sass/_project-Main.scss index 15c185d4..9d012717 100644 --- a/sass/_project-sass/_project-Main.scss +++ b/sass/_project-sass/_project-Main.scss @@ -1785,4 +1785,15 @@ a.tag:hover { blockquote:before, blockquote:after { content: none; } +} +.hide-on-mobile { + @media (max-device-width:480px), screen and (max-width:800px) { + display: none; + } +} +.show-on-mobile { + display: none; + @media (max-device-width:480px), screen and (max-width:800px) { + display: inline; + } } \ No newline at end of file diff --git a/views/browse.erb b/views/browse.erb index 940afbab..564bb381 100644 --- a/views/browse.erb +++ b/views/browse.erb @@ -21,7 +21,7 @@