Add border support to the two card types
This commit is contained in:
parent
4946d08165
commit
23a38dfc4f
2 changed files with 6 additions and 2 deletions
|
|
@ -76,13 +76,15 @@ export default {
|
|||
|
||||
<style scoped>
|
||||
.card {
|
||||
border-color: var(--card-border-colour);
|
||||
border-style: var(--card-border-style);
|
||||
border-width: var(--card-border-width);
|
||||
border-radius: var(--corner-rounding);
|
||||
background-color: var(--card-colour);
|
||||
padding: 10px 10px 1.75em;
|
||||
color: var(--card-text);
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
border-style: none;
|
||||
position: relative;
|
||||
margin: 5px auto;
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -138,12 +138,14 @@ export default {
|
|||
|
||||
<style scoped>
|
||||
.card {
|
||||
border-color: var(--card-border-colour);
|
||||
border-style: var(--card-border-style);
|
||||
border-width: var(--card-border-width);
|
||||
border-radius: var(--corner-rounding);
|
||||
background-color: var(--card-colour);
|
||||
color: var(--card-text);
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
border-style: none;
|
||||
position: relative;
|
||||
margin: 5px auto;
|
||||
display: flex;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue