changes for version 0.1.5 and release of version 0.1.5 #23
3 changed files with 14 additions and 3 deletions
fix long titles and offering-party name breaking centering
also removes "Stellenanzeige von" instead make text italic
commit
db0099f84f
|
|
@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Change
|
||||||
|
- some display/style changes for job offer entries
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
- /summary should be accessible for anonymous visitors
|
- /summary should be accessible for anonymous visitors
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,14 @@ main {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.centered-text {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.italic-text {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
.login-form {
|
.login-form {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-gap: 5px;
|
grid-gap: 5px;
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,9 @@
|
||||||
}}
|
}}
|
||||||
|
|
||||||
<div class="joboffer-index-entry-content {{#if user}}{{job_offer.status}}{{/if}}">
|
<div class="joboffer-index-entry-content {{#if user}}{{job_offer.status}}{{/if}}">
|
||||||
<h2 class="joboffer-title centered">{{job_offer.title}}</h2>
|
<h2 class="joboffer-title centered centered-text">{{job_offer.title}}</h2>
|
||||||
<div class="centered">
|
<div class="joboffer-offering-party centered centered-text italic-text">
|
||||||
Stellenanzeige von {{job_offer.offering_party}}
|
{{job_offer.offering_party}}
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue