Skip to content

Commit

Permalink
more align-self options
Browse files Browse the repository at this point in the history
  • Loading branch information
vellt committed Sep 22, 2024
1 parent 6c6c293 commit a3e560e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ <h4>Generált Kód:</h4>
select.classList.add('form-select', 'mb-3', 'align-self-select');
select.setAttribute('data-item-index', itemIndex);

const options = ['Nincs beállítva', 'align-self-start', 'align-self-center', 'align-self-end', 'align-self-stretch'];
const options = ['Nincs beállítva', 'align-self-auto', 'align-self-start', 'align-self-center', 'align-self-end', 'align-self-stretch', 'align-self-baseline'];
options.forEach(optionText => {
const option = document.createElement('option');
option.value = optionText === 'Nincs beállítva' ? '' : optionText;
Expand Down

0 comments on commit a3e560e

Please sign in to comment.