Skip to content

Commit

Permalink
TodoMVC: Use flexbox for footer
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoburns committed Oct 9, 2024
1 parent dd14f93 commit 2f0c44a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion examples/assets/todomvc.css
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,9 @@ body {
height: 20px;
text-align: center;
border-top: 1px solid #e6e6e6;
display: flex;
justify-content: space-between;
align-items: center;
}

.footer:before {
Expand Down Expand Up @@ -293,10 +296,11 @@ body {
}

.filters li {
display: inline;
display: inline-block;
}

.filters li a {
display: inline-block;
color: inherit;
margin: 3px;
padding: 3px 7px;
Expand All @@ -320,6 +324,7 @@ html .clear-completed:active {
line-height: 20px;
text-decoration: none;
cursor: pointer;
display: inline-block;
}

.clear-completed:hover {
Expand Down

0 comments on commit 2f0c44a

Please sign in to comment.