mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 12:17:37 +08:00
30 lines
499 B
Vue
30 lines
499 B
Vue
<template>
|
|
<div class="sponsor-item">
|
|
<a
|
|
href="https://www.jnpfsoft.com/index.html?from=elementUI"
|
|
title="jnpfsoft"
|
|
target="_blank"
|
|
>
|
|
<img src="/images/jnpfsoft.jpg" alt="jnpfsoft" />
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.sponsor-item {
|
|
margin-bottom: 8px;
|
|
img {
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
@media (max-width: 768px) {
|
|
.sponsor-item {
|
|
max-width: 160px;
|
|
img {
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|