26 lines
425 B
Vue
26 lines
425 B
Vue
<style>
|
|
|
|
.holidayis {
|
|
text-align: right;
|
|
font-size: 2.4rem;
|
|
min-width: 75%;
|
|
margin-left: auto;
|
|
margin-right: 1.2rem;
|
|
}
|
|
|
|
@media (max-width: 720px) {
|
|
.holidayis {
|
|
margin: 0;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
</style>
|
|
|
|
<template>
|
|
|
|
<div class="holidayis">
|
|
Happy placeholder holiday with an extra long name!
|
|
</div>
|
|
|
|
</template> |