forked from nayarahilton/vue-pwa-profil
-
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.
- Loading branch information
lucasjs
committed
Nov 15, 2017
1 parent
5f11af4
commit 229818d
Showing
2 changed files
with
44 additions
and
2 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,40 @@ | ||
<template> | ||
<div | ||
class="feedback" | ||
> | ||
<span class="feedback__text"> | ||
{{ msgText }} | ||
</span> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
props: { | ||
msgText: { | ||
required: true, | ||
type: String, | ||
}, | ||
}, | ||
}; | ||
</script> | ||
|
||
<style lang="stylus" scoped> | ||
@import '../assets/styles/_colors' | ||
* | ||
box-sizing border-box | ||
.feedback | ||
background transparent | ||
margin-bottom 20px | ||
padding 15px | ||
width 100% | ||
&__text | ||
color red | ||
font-size 12pt | ||
font-weight 300 | ||
margin 0 | ||
text-align center | ||
</style> |