-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #692 from weni-ai/staging
Staging
- Loading branch information
Showing
17 changed files
with
418 additions
and
58 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,60 @@ | ||
<template> | ||
<div class="sidebar-modal"> | ||
<img :src="image" /> | ||
|
||
<div class="content"> | ||
<div class="u font secondary body-md bold color-neutral-dark"> | ||
{{ title }} | ||
</div> | ||
|
||
<div class="u font secondary body-md color-neutral-cloudy"> | ||
{{ description }} | ||
</div> | ||
|
||
<a :href="$t('docs_urls.how_to_create_a_flow')" target="_blank"> | ||
<unnnic-button type="terciary" size="small"> | ||
{{ $t('know_more') }} | ||
</unnnic-button> | ||
</a> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
props: { | ||
image: String, | ||
title: String, | ||
description: String, | ||
}, | ||
}; | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
@import '~@weni/unnnic-system/src/assets/scss/unnnic.scss'; | ||
@import '~@weni/unnnic-system/dist/unnnic.css'; | ||
.sidebar-modal { | ||
background-color: $unnnic-color-neutral-light; | ||
border: $unnnic-border-width-thinner solid $unnnic-color-neutral-soft; | ||
border-radius: $unnnic-border-radius-md; | ||
padding: $unnnic-spacing-inset-nano; | ||
box-shadow: $unnnic-shadow-level-separated; | ||
img { | ||
width: 100%; | ||
aspect-ratio: 252 / 114.5; | ||
object-fit: cover; | ||
border-radius: $unnnic-border-radius-md; | ||
} | ||
.content { | ||
padding: $unnnic-spacing-inset-nano; | ||
.unnnic-button { | ||
width: 100%; | ||
margin-top: $unnnic-spacing-stack-xs; | ||
} | ||
} | ||
} | ||
</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.