Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refine css
  • Loading branch information
PanJiaChen committed May 10, 2019
commit 7d19b1b7f563b41d582c7fb3012086453ef4d321
39 changes: 37 additions & 2 deletions src/views/dashboard/admin/components/PanelGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,11 @@ export default {
<style lang="scss" scoped>
.panel-group {
margin-top: 18px;
.card-panel-col{

.card-panel-col {
margin-bottom: 32px;
}

.card-panel {
height: 108px;
cursor: pointer;
Expand All @@ -86,61 +88,94 @@ export default {
background: #fff;
box-shadow: 4px 4px 40px rgba(0, 0, 0, .05);
border-color: rgba(0, 0, 0, .05);

&:hover {
.card-panel-icon-wrapper {
color: #fff;
}

.icon-people {
background: #40c9c6;
background: #40c9c6;
}

.icon-message {
background: #36a3f7;
}

.icon-money {
background: #f4516c;
}

.icon-shopping {
background: #34bfa3
}
}

.icon-people {
color: #40c9c6;
}

.icon-message {
color: #36a3f7;
}

.icon-money {
color: #f4516c;
}

.icon-shopping {
color: #34bfa3
}

.card-panel-icon-wrapper {
float: left;
margin: 14px 0 0 14px;
padding: 16px;
transition: all 0.38s ease-out;
border-radius: 6px;
}

.card-panel-icon {
float: left;
font-size: 48px;
}

.card-panel-description {
float: right;
font-weight: bold;
margin: 26px;
margin-left: 0px;

.card-panel-text {
line-height: 18px;
color: rgba(0, 0, 0, 0.45);
font-size: 16px;
margin-bottom: 12px;
}

.card-panel-num {
font-size: 20px;
}
}
}
}

@media (max-width:600px) {
.card-panel-description {
display: none;
}

.card-panel-icon-wrapper {
float: none !important;
width: 100%;
height: 100%;
margin: 0 !important;

.svg-icon {
display: block;
margin: 14px auto !important;
float: none !important;
}
}
}
</style>