# September 10, 2019
# Reviewing T's button styling work, assigned tag area.
# TAP Blog meeting
# Entering time
# SBX Holiday audit
# Lupe, researching production commands
# Lupe sprint planning
# JMS Analytics task
# Z-index TAP Bug
- actually just needed some padding on the first thing, found a nice workaround for the idea that CSS doesn't have a first-of-classname selector.
- Apply the first thing's styles to the main class:
- then remove them with a general sibling selector.
.cs-summary {
padding-top: 7em;
}
.cs-summary ~ .cs-summary {
padding-top: 0;
}
1
2
3
4
5
6
2
3
4
5
6