34 lines
492 B
Vue
34 lines
492 B
Vue
<template>
|
|
<div class="main">
|
|
<img src="/images/service1.webp"/>
|
|
<div class="content">
|
|
League of Legends<br/>
|
|
10% OFF<br/>
|
|
1.80 2.00/Game
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.main {
|
|
padding: 0.8vmax;
|
|
display: flex;
|
|
font-size: 1.2vmax;
|
|
line-height: 2vmax;
|
|
}
|
|
.content {
|
|
padding-left: 1vmax;
|
|
display: block;
|
|
}
|
|
|
|
img {
|
|
width: 4vmax;
|
|
height: 4vmax;
|
|
border-radius: 0.8vmax;
|
|
display: block;
|
|
}
|
|
|
|
</style> |