Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Commit

Permalink
Fix/components validation (#118)
Browse files Browse the repository at this point in the history
* Change pageview style as react and fix naming as bff

* Fix image e container

* Add inherited border radius

* Fix constants

* Fix constants

* Fix container

* Add border-radius to text

* Add new line

Co-authored-by: Rafael de Melo Silva <[email protected]>
  • Loading branch information
carolinegoncalveszup and rafamsilva authored Jun 22, 2020
1 parent 6e5c7e5 commit 45f9355
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ beagle-container {
flex-direction: column;
overflow: auto;
flex-wrap: wrap;
}
}
3 changes: 2 additions & 1 deletion src/components/beagle-image/beagle-image.component.less
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,6 @@ figure {
min-height: inherit;
max-width: inherit;
max-height: inherit;
border-radius: inherit;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ beagle-page-view {
display: flex;
align-items: center;
justify-content: center;
width: 15px;
width: 24px;
color: @swamp;
cursor: pointer;
}
Expand All @@ -58,7 +58,7 @@ beagle-page-view {
}

&.active {
display: flex;
display: block;
}
}

Expand Down
1 change: 1 addition & 0 deletions src/components/beagle-text/beagle-text.component.less
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ beagle-text {
.beagle-text {
margin: 0;
background-color: inherit;
border-radius: inherit;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import { BeagleTouchableInterface } from '../schemas/touchable'
export class BeagleTouchableComponent implements BeagleTouchableInterface {
@Input() onPress: () => void


handleClick() {
if (this.onPress) this.onPress()
}
Expand Down

0 comments on commit 45f9355

Please sign in to comment.