mirror of
https://github.com/sasjs/server.git
synced 2025-12-10 19:34:34 +00:00
23 lines
376 B
TypeScript
23 lines
376 B
TypeScript
export const style = `<style>
|
|
* {
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
.app-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: baseline;
|
|
justify-content: center;
|
|
}
|
|
.app-container .app {
|
|
width: 150px;
|
|
margin: 10px;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
}
|
|
.app-container .app img{
|
|
width: 100%;
|
|
margin-bottom: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
</style>`
|