[fix] slick-router

This commit is contained in:
Andy Bunce 2024-04-03 12:12:32 +01:00
parent 0659567f36
commit dcd18dd3d5
18 changed files with 618 additions and 28 deletions

View file

@ -0,0 +1,75 @@
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
body,
html {
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
}
.App {
width: 800px;
margin: 0 auto 20px auto;
}
.App-header {
border-bottom: 1px solid #eee;
}
.App-header .active {
font-weight: bolder;
}
.App-footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
padding-bottom: 20px;
text-align: center;
background-color: bisque;
}
.App h1 {
display: inline-block;
}
.Nav {
display: inline-block;
}
.Nav-item {
list-style: none;
display: inline-block;
}
.Nav-item a {
padding: 10px;
}
.Tweet {
border: 1px solid #eee;
border-radius: 3px;
padding: 10px;
border-bottom: none;
}
.Tweet:last-child {
border-bottom: 1px solid #eee;
}
.Tweet-author {
font-weight: bold;
display: inline-block;
}
.Tweet-time {
color: #888;
display: inline-block;
margin-left: 20px;
font-size: 12px;
}
router-outlet > * {
display: block;
}