|
|
@@ -1,11 +1,11 @@
|
|
|
<template>
|
|
|
- <div class="flex flex-col full-width mb-20">
|
|
|
+ <div class="flex flex-col full-width mb-15">
|
|
|
<div class="full-width text-left bold font-16">今日学习</div>
|
|
|
<div class="flex flex-center">
|
|
|
<div class="flex flex-center" style="flex: 5">
|
|
|
<preview
|
|
|
:id="item.fileId"
|
|
|
- class="flex flex-col flex-center flex-justify-start border radius box-shadow item"
|
|
|
+ class="flex flex-col flex-center flex-justify-start border box-shadow item"
|
|
|
v-for="item in data"
|
|
|
:key="item.id"
|
|
|
>
|
|
|
@@ -75,21 +75,24 @@ export default {
|
|
|
.item {
|
|
|
width: 245px;
|
|
|
padding: 0;
|
|
|
+ border-radius: 10px;
|
|
|
}
|
|
|
|
|
|
.item:hover {
|
|
|
width: 245px;
|
|
|
padding: 0;
|
|
|
+ border-radius: 10px;
|
|
|
}
|
|
|
|
|
|
.img {
|
|
|
- border-top-right-radius: 8px;
|
|
|
- border-top-left-radius: 8px;
|
|
|
+ border-top-right-radius: 10px;
|
|
|
+ border-top-left-radius: 10px;
|
|
|
width: 245px;
|
|
|
padding: 0;
|
|
|
height: 180px;
|
|
|
object-fit: cover;
|
|
|
}
|
|
|
+
|
|
|
.title {
|
|
|
height: 30px;
|
|
|
margin-bottom: 10px;
|