mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-18 13:38:24 -04:00
Made li list style dots more specific
We set all li elements to use list-style disc, but it was affecting our navbar. Changed it to use a specific class in the crop hierarchy (where we actually cared about it).
This commit is contained in:
@@ -165,6 +165,6 @@ p.stats {
|
||||
}
|
||||
}
|
||||
|
||||
li {
|
||||
li.crop-hierarchy {
|
||||
list-style-type: disc;
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%ul
|
||||
- display_crops.each do |c|
|
||||
%li
|
||||
%li.crop-hierarchy
|
||||
= link_to c, c
|
||||
- if c.varieties.present?
|
||||
- c.varieties.each do |v|
|
||||
|
||||
Reference in New Issue
Block a user