<style>
#app {
height: fit-content;
- width: fit-content;
- font-family: Avenir, Helvetica, Arial, sans-serif;
+ width: 100%;
+ font-family: Tahoma, 'Arial Narrow', Arial, Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: flex;
}
#action-container {
- min-width: max-content;
display: flex;
flex-direction: column;
justify-content: center;
}
.spin {
- animation-name: rotation;
- animation-duration: 2s;
- animation-iteration-count: infinite;
- animation-timing-function: linear;
+ animation: rotation 2s linear infinite;
}
</style>