Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FAU-429] Adjust icon background and margins #38

Merged
merged 2 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.0.3] - 2024-07-10
### Fixed
- Adjust icon background and margins.
- Degree program URL returns 404 for consuming websites.

## [1.0.2] - 2023-11-23
Expand All @@ -21,7 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release.

[Unreleased]: https://github.com/RRZE-Webteam/FAU-Studium-Embed/compare/1.0.2...HEAD
[Unreleased]: https://github.com/RRZE-Webteam/FAU-Studium-Embed/compare/1.0.3...HEAD
[1.0.2]: https://github.com/RRZE-Webteam/FAU-Studium-Embed/compare/1.0.2...1.0.3
[1.0.2]: https://github.com/RRZE-Webteam/FAU-Studium-Embed/compare/1.0.1...1.0.2
[1.0.1]: https://github.com/RRZE-Webteam/FAU-Studium-Embed/compare/1.0.0...1.0.1
[1.0.0]: https://github.com/RRZE-Webteam/FAU-Studium-Embed/releases/tag/1.0.0
2 changes: 1 addition & 1 deletion fau-degree-program-output.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: FAU Degree Program Output
* Plugin URI: https://github.com/RRZE-Webteam/FAU-Studium-Embed
* Description: Fetch degree programs via the REST API and display them.
* Version: 1.0.2
* Version: 1.0.3
* Author: Syde GmbH
* Author URI: https://syde.com/
* Update URI: false
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rrze/fau-studium-embed",
"version": "1.0.2",
"version": "1.0.3",
"description": "Fetch degree programs via the REST API and display them.",
"author": "Syde GmbH",
"browserslist": [
Expand Down
5 changes: 5 additions & 0 deletions resources/scss/components/_details.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,16 @@
position: relative;
break-inside: avoid;

p {
padding: 0;
}

.fau-icon {
fill: config.color('branding', 'primary');
position: absolute;
left: 0;
top: 5px;
background: none;
}
}
}
Loading