lessen 111: move the header styling to BaseCard

This commit is contained in:
Andreas Zweili 2021-02-06 17:42:50 +01:00
parent 2aead5518b
commit 271c06abce
2 changed files with 5 additions and 8 deletions

View File

@ -12,6 +12,11 @@ export default {};
</script>
<style scoped>
header {
display: flex;
justify-content: space-between;
align-items: center;
}
div {
margin: 2rem auto;
max-width: 30rem;

View File

@ -21,11 +21,3 @@ export default {
props: ["fullName", "infoText", "role"],
};
</script>
<style>
section header {
display: flex;
justify-content: space-between;
align-items: center;
}
</style>