Skip to content

Migrate to tailwindcss #553

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

Merged
merged 40 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
bf50f1f
Add tailwindcss
ahangarha Sep 4, 2023
02fd0c0
Apply design to main page
ahangarha Sep 6, 2023
fce3549
Apply style to form tabs
ahangarha Sep 6, 2023
edf1a48
Improve navbar
ahangarha Sep 8, 2023
e645fa6
Migrate horizontal react form
ahangarha Sep 8, 2023
004106f
Migrate stacked react form
ahangarha Sep 8, 2023
b8c544b
Migrate inline react form
ahangarha Sep 8, 2023
b9b9bfa
Improve no-router page
ahangarha Sep 9, 2023
8f710ea
Improve simple react page
ahangarha Sep 9, 2023
4ddc830
Migrate stimulus page
ahangarha Sep 9, 2023
0edf3b8
Improve classic rails page
ahangarha Sep 9, 2023
2d12cf5
Update style of error notice partial
ahangarha Sep 9, 2023
5a7cc53
Remove react-bootstrap dependency
ahangarha Sep 9, 2023
1226e1a
Minor style improvement
ahangarha Sep 9, 2023
b42478e
Fix test failures
ahangarha Sep 9, 2023
0682a41
Linter
ahangarha Sep 9, 2023
43480b6
Fix typo in style
ahangarha Sep 9, 2023
ff638b7
Apply style on classic rails partials
ahangarha Sep 9, 2023
57e5443
Improve overal layout
ahangarha Sep 9, 2023
6e1a4bc
Fix linter issues
ahangarha Sep 9, 2023
0012206
Remove commented code
ahangarha Sep 10, 2023
501089a
Remove sass style for comments
ahangarha Sep 10, 2023
57c45db
Improve footer style
ahangarha Sep 10, 2023
4328844
Improve branding in navbar
ahangarha Sep 10, 2023
4a4b1de
Improve language selector style
ahangarha Sep 10, 2023
5e307c1
Use tailwind for image background in footer
ahangarha Sep 11, 2023
44b4d63
Remove unused scss files
ahangarha Sep 11, 2023
1200b78
Remove bootstrap specifc files and styles
ahangarha Sep 11, 2023
c0664b9
Improve navbar links
ahangarha Sep 11, 2023
1d4925f
Replace bootstrap with Tailwind in Readme
ahangarha Sep 12, 2023
c5b1973
Remove duplicate style
ahangarha Sep 12, 2023
ffb5db7
Remove sass-resources-loader
ahangarha Sep 15, 2023
633d99d
Minor style improvement
ahangarha Sep 15, 2023
4b51f0a
Revert "Remove sass-resources-loader"
ahangarha Sep 15, 2023
42638c3
Use sass-resources-loader for animation duration
ahangarha Sep 20, 2023
dc96932
Fix eslint issue
ahangarha Sep 20, 2023
3118b54
Fix eslint issue
ahangarha Sep 20, 2023
f7598b0
Show notice wrapper if it exists
ahangarha Oct 10, 2023
a315ca2
Use pointer cursor for destroy btn
ahangarha Oct 10, 2023
bfa0fd1
Show notice wrapper if it exists
ahangarha Oct 10, 2023
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
Prev Previous commit
Next Next commit
Improve overal layout
  • Loading branch information
ahangarha committed Oct 10, 2023
commit 57e54430c63d1ed08c21c4a8df5346f764737a74
4 changes: 2 additions & 2 deletions app/views/layouts/application.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

<%= csrf_meta_tags %>
</head>
<body class="bg-sky-50 text-gray-700">
<body class="min-h-screen flex flex-col bg-sky-50 text-gray-700">
<%= react_component "NavigationBarApp" %>

<div class="container mx-auto px-4">
<div class="container mx-auto px-4 flex-grow">
<%= yield %>
</div>

Expand Down
4 changes: 2 additions & 2 deletions app/views/layouts/stimulus_layout.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

<%= csrf_meta_tags %>
</head>
<body class="bg-sky-50 text-gray-700">
<body class="min-h-screen flex flex-col bg-sky-50 text-gray-700">
<%= react_component "NavigationBarApp" %>

<div class="container mx-auto px-4">
<div class="container mx-auto px-4 flex-grow">
<%= yield %>
</div>

Expand Down
2 changes: 1 addition & 1 deletion client/app/bundles/comments/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import css from './Footer.module.scss';
export default class Footer extends BaseComponent {
render() {
return (
<div className="container">
<div className="container mx-auto">
<a href="http://www.shakacode.com">
<h3>
<div className={css.logo} />
Expand Down