27 lines
507 B
Vue
27 lines
507 B
Vue
<template>
|
|
<div class="gw-div">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.gw-div {
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
margin: 5px;
|
|
justify-content: center;
|
|
background-color: grey;
|
|
}
|
|
.cw-cp {
|
|
background-color: rgb(0, 122, 2);
|
|
}
|
|
.cw-ip {
|
|
background-color: rgb(1, 185, 4);
|
|
}
|
|
.cf-cp {
|
|
background-color: rgb(0, 9, 166);
|
|
}
|
|
.cf-ip {
|
|
background-color: rgb(45, 54, 225);
|
|
}
|
|
</style> |