Skip to content

Commit

Permalink
Updated styles
Browse files Browse the repository at this point in the history
  • Loading branch information
isc-lperezra committed Aug 26, 2024
1 parent 7ee14ab commit ff200f5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion encoder-ui/src/app/analysis/analysis.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
@for (row of analysis; track row){
<tr (click)="analysisSelected(row.Id, row.RawText)">
<td>{{row.Id}}</td>
<td>{{row.RawText | truncate:[100,'...']}}</td>
<td>{{row.RawText | truncate:[150,'...']}}</td>
<td>{{row.AnalysisDate}}</td>
</tr>
}
Expand Down
4 changes: 4 additions & 0 deletions encoder-ui/src/app/app.component.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.main-container {
height: 100vh;
}

.navbar-brand {
font-size: 2em;
}
4 changes: 2 additions & 2 deletions encoder-ui/src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

/* Importing Bootstrap SCSS file. */
@import 'bootstrap/scss/bootstrap';
@import url('https://fonts.cdnfonts.com/css/lucida-sans');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
font-family: Lucida Sans Typewriter;
font-family: 'Nunito', sans-serif;
}

html, body {
Expand Down

0 comments on commit ff200f5

Please sign in to comment.