Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
refactor: #204 Refactoring styles
  • Loading branch information
Juan Gabriel Guzman committed May 29, 2020
commit a53932d337f5c53270d94741acb5ac49dde0deac
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<div class="input-group-prepend">
<span class="input-group-text span-width" id="inputGroup-sizing-sm">{{text}}</span>
<span class="input-group-text input-label" id="inputGroup-sizing-sm">{{text}}</span>
</div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
@import '../../../../../styles/colors.scss';

.input-label {
width: 6rem;
background-color: $primary;
color: white;
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {Component, Input} from '@angular/core';
@Component({
selector: 'app-input-label',
templateUrl: './input-label.component.html',
styleUrls: ['./input-label.component.scss']
})
export class InputLabelComponent {
@Input()
Expand Down