Skip to content

Commit

Permalink
changes (#487)
Browse files Browse the repository at this point in the history
Co-authored-by: Andi Braimllari <>
  • Loading branch information
AndiBraimllari committed May 23, 2024
1 parent ee4b7df commit 4abfc2e
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 18 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@ testem.log
# System Files
.DS_Store
Thumbs.db

# Source Files
src/robots.txt
src/sitemap.xml
4 changes: 3 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@
"assets": [
"src/penda.png",
"src/favicon.ico",
"src/assets"
"src/assets",
"src/robots.txt",
"src/sitemap.xml"
],
"styles": [
"src/styles.css"
Expand Down
8 changes: 3 additions & 5 deletions src/app/home/home.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -352,10 +352,6 @@
justify-content: space-between;
}

.history-card-close-button {
padding: 0.1rem 0.3rem;
}

.blur-marking-button {
padding: 0.1rem 0.3rem;
}
Expand Down Expand Up @@ -503,6 +499,9 @@
}

.writing {
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
box-shadow: 0 0 10px rgba(216, 216, 216, 0.6);
border-radius: 5px;
padding: 5px;
Expand Down Expand Up @@ -592,7 +591,6 @@
width: 40px;
height: 23px;
float: right;
right: 53px;
}

.switch input {
Expand Down
15 changes: 8 additions & 7 deletions src/app/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
spellcheck="false"
autocapitalize="off"
role="textbox"
aria-label='redaktori'
aria-multiline="true"
data-test="editor"
></div>
Expand Down Expand Up @@ -621,6 +622,12 @@ <h5 id="writingsHistoryModalLabel" class="modal-title">
data-test="writings-history-modal-body"
>
<div class="form-check form-switch history-body">
<!-- TODO if user changes call a method that changes it in the service and invalidates-->
<label
class="form-check-label"
for="flex-switch-check-checked"
>Përdor Historikun e Shkrimeve</label
>
<label class="switch">
<input
(click)="toggleStoringOfWritings()"
Expand All @@ -632,12 +639,6 @@ <h5 id="writingsHistoryModalLabel" class="modal-title">
data-test="flex-switch-check-checked"
></span>
</label>
<!-- TODO if user changes call a method that changes it in the service and invalidates-->
<label
class="form-check-label"
for="flex-switch-check-checked"
>Përdor Historikun e Shkrimeve</label
>
<div>
<span class="history-deactivation-message"
>çaktivizimi i historikut të shkrimeve do të fshijë
Expand Down Expand Up @@ -674,7 +675,7 @@ <h5 id="writingsHistoryModalLabel" class="modal-title">
<button
id="close-writings-history-modal-button"
type="button"
class="btn btn-secondary history-card-close-button"
class="btn btn-secondary"
data-bs-dismiss="modal"
data-test="close-writings-history-modal-button"
>
Expand Down
2 changes: 1 addition & 1 deletion src/app/settings/settings.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ <h5>Shenjimet e Hequra</h5>
>
<div>Rishiko shenjimet që keni hequr më parë.</div>
<button
class="btn btn-secondary deleted-dismissed-marking-button"
class="btn btn-secondary"
id="dismissedMarkingsModalButton"
type="button"
data-bs-toggle="modal"
Expand Down
9 changes: 5 additions & 4 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>penda</title>
<base href="/" />
<meta charset="utf-8"/>
<meta name="description" content="Korrektor për gjuhën shqipe."/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/png" href="penda.png" />
<title>penda</title>
<base href="/"/>
<link rel="icon" type="image/png" href="penda.png"/>
<script src="https://accounts.google.com/gsi/client" async></script>
<script src="https://www.paypal.com/sdk/js?client-id=AUziZRZ99B4TF-d5mivvx98XgNHynICX3escDuxr1JdyEtUHWGIbT7soDSWWjzfpsPVHKaN_GcNc3NvJ&enable-funding=credit,card&disable-funding=paylater,bancontact,blik,eps,giropay,ideal,mercadopago,mybank,p24,sepa,sofort,venmo&vault=true&intent=subscription"></script>
</head>
Expand Down

0 comments on commit 4abfc2e

Please sign in to comment.