Feat: css to hightlight selected_year

This commit is contained in:
Bertrand Benjamin 2022-02-13 18:03:44 +01:00
parent 4ddfa1654f
commit 8b92697870
1 changed files with 17 additions and 1 deletions

View File

@ -60,8 +60,24 @@ export default {
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
#years {
list-style-type: none;
padding: 0;
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: space-around;
}
#years > * {
margin: 3px;
width: 80px;
display: flex;
flex-direction: column-reverse;
}
.selected_year {
color: red;
font-size: 1.5em;
font-weight: bold;
}