19 lines
392 B
Svelte
19 lines
392 B
Svelte
<div class="container">
|
|
ALEX
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.container {
|
|
position: absolute;
|
|
display: grid;
|
|
justify-self: end;
|
|
vertical-align: bottom;
|
|
align-self: flex-end;
|
|
|
|
// font settings
|
|
font-size: 80mm;
|
|
color: #e4e4e4;
|
|
|
|
transform: translate(32%, -32%) rotate(-90deg);
|
|
}
|
|
</style>
|