The hero section alignment becomes inconsistent on normal/laptop screen sizes. While the layout looks fine in full-screen mode, in normal view the entire hero content appears pushed too far downward, creating excessive empty space at the top. #346
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Auto Label Issues and PRs | |
| on: | |
| issues: | |
| types: [opened] | |
| pull_request_target: # Correct indentation here | |
| types: [opened] | |
| jobs: | |
| add-labels: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Add labels to new issues | |
| if: github.event_name == 'issues' | |
| uses: actions-ecosystem/action-add-labels@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} # Use GITHUB_TOKEN for issues | |
| labels: | | |
| gssoc26 | |
| - name: Add labels to new pull requests | |
| if: github.event_name == 'pull_request_target' | |
| uses: actions-ecosystem/action-add-labels@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} # Use GITHUB_TOKEN for PRs | |
| labels: | | |
| level:intermediate | |
| quality:clean | |
| type:accessibility | |
| gssoc:approved |