forked from ergonode/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature(uiComponents) ergonode#70 Updated logic and layout for DatePi…
…cker
- Loading branch information
maciejkaczorowski
committed
Jul 18, 2019
1 parent
9584661
commit 2a51329
Showing
6 changed files
with
182 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Copyright © Bold Brand Commerce Sp. z o.o. All rights reserved. | ||
* See LICENSE for license details. | ||
*/ | ||
/* | ||
* Copyright © Bold Brand Commerce Sp. z o.o. All rights reserved. | ||
* See LICENSE for license details. | ||
*/ | ||
<template> | ||
<div class="header"> | ||
<span v-text="header" /> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'DatePickerHeader', | ||
props: { | ||
header: { | ||
type: [String, Number], | ||
required: true, | ||
}, | ||
}, | ||
}; | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.header { | ||
@include setFont(medium, small, regular, $graphite); | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 32px; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.