Skip to content

Commit

Permalink
Merge pull request #34 from mbaraa/dev
Browse files Browse the repository at this point in the history
Dev to main
  • Loading branch information
mbaraa authored May 22, 2024
2 parents 98378d1 + 4597e82 commit aae51be
Show file tree
Hide file tree
Showing 10 changed files with 596 additions and 282 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/rex-deploy-beta.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: rex-deploy
name: Deployment

concurrency: development

on:
push:
Expand All @@ -11,8 +13,9 @@ on:
- "**.md"

jobs:
rex-deploy:
deployment:
runs-on: ubuntu-latest
environment: development
steps:
- name: rex-7567-e27
uses: mbaraa/[email protected]
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/rex-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: rex-deploy
name: Deployment

concurrency: production

on:
push:
Expand All @@ -15,6 +17,7 @@ on:
jobs:
rex-deploy:
runs-on: ubuntu-latest
environment: production
steps:
- name: rex-7567-e27
uses: mbaraa/[email protected]
Expand Down
29 changes: 28 additions & 1 deletion static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,40 @@
@tailwind components;
@tailwind utilities;

html,
body,
div,
ul,
table {
scroll-behavior: smooth;
}

* {
--animation-duration: 0.4s;
-webkit-transition:
background-color var(--animation-duration),
opacity var(--animation-duration);
-moz-transition:
background-color var(--animation-duration),
opacity var(--animation-duration);
-o-transition:
background-color var(--animation-duration),
opacity var(--animation-duration);
-ms-transition:
background-color var(--animation-duration),
opacity var(--animation-duration);
transition:
background-color var(--animation-duration),
opacity var(--animation-duration);
}

.loader {
height: 100%;
width: 100%;
aspect-ratio: 1 / 1;
border-width: 6px;
border-style: solid;
border-color: #dedede;
border-color: var(--secondary-color);
border-top-color: transparent;
border-top-width: 2px;
border-radius: 50%;
Expand Down
Loading

0 comments on commit aae51be

Please sign in to comment.