tiss2go/app/assets/stylesheets/favorites.scss
Pfingstfrosch 92eff82f1a refactored favorites:
instead of using a fav page for each content, use a general favorites pane where the user can select which favs shall be shown
2020-05-12 19:19:04 +02:00

25 lines
562 B
SCSS

// Place all the styles related to the favorites controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: https://sass-lang.com/
.favNav {
display: flex;
a:link, a:visited {
font-family: Helvetica, sans-serif;
transition: .3s all ease-in-out;
font-size: 18px;
background-color: #3F51B5;
color: white;
padding: 5px 10px;
text-align: center;
text-decoration: none;
display: inline-block;
flex-grow: 1;
}
a:hover, a:active {
background-color: #009688;
}
}