Skip to content

Commit

Permalink
fixed PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Petr Gadorek committed Jan 22, 2025
1 parent 7f155e3 commit 692d4eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 2 additions & 0 deletions src/assets/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ body {

.wizard-container {
padding: 2rem;
padding-top: 0px;
padding-bottom: 0px;
max-width: 1200px;
margin: 0 auto;
align-items: center;
Expand Down
3 changes: 1 addition & 2 deletions src/components/LoadConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@
<div class="config-content" data-id="config-content">
<div class="config-layout" data-id="config-layout">
<div class="config-text" data-id="config-text">
<h2 class="section-title" data-id="config-section-title">Reuse Configuration from previous installation
installation</h2>
<h2 class="section-title" data-id="config-section-title">Reuse Configuration from previous installation</h2>
<p class="section-description" data-id="config-description">Drag & drop TOML file or click to load existing
configuration</p>
</div>
Expand Down
4 changes: 1 addition & 3 deletions src/components/wizard_steps/PrerequisitiesCheck.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@
<div v-else class="manual-install" data-id="manual-install-section">
<p class="hint" data-id="manual-install-hint">Please install these components and run the check again:
</p>
<ul class="missing-list" data-id="missing-prerequisites-list">
<li v-for="p in missing_prerequisities" :key="p" :data-id="`missing-prerequisite-${p}`">{{ p }}</li>
</ul>
</div>
</div>
</div>
Expand Down Expand Up @@ -130,6 +127,7 @@ export default {
<style scoped>
.prerequisites {
padding: 2rem;
padding-top: 0px;
max-width: 1200px;
margin: 0 auto;
align-items: center;
Expand Down

0 comments on commit 692d4eb

Please sign in to comment.