Closed whitep4nth3r closed 4 years ago
I haven't removed bootstrap completely yet - but this should be the aim.
Absolutly awesome work here @whitep4nth3r !! If any one wishes to see the development of this Pull Request the Vod is on twitch https://www.twitch.tv/videos/769089343
I wanted to do this but my logic handling in .NET is limited!
On Tue, 13 Oct 2020 at 17:56, Rick van den Bosch notifications@github.com wrote:
@rickvdbosch approved this pull request.
I only have one comment, but that's also a possible optimization for a future PR 😃
In HacktoberfestProject.Web/Views/Shared/_Login.cshtml https://github.com/Layla-P/HacktoberfestProject/pull/52#discussion_r504092822 :
@@ -1,10 +1,18 @@
-
Hello! So I wanted to a) try Tailwind and b) give people an easy way to add styles to the project without actually writing CSS!
I've styled the home page as a starter but left other stuff untouched.
I've added this to the README:
Styling the front end
The project uses tailwind CSS!
System requirements:
To install dependencies, run the following commands:
Adding styles
The raw css is stored in
/HacktoberfestProject.Web/styles/raw.css
.The aim of using tailwind, is this:
Ideally, we shouldn't have to add any custom css to raw.css. To follow this pattern, attempt to add and edit styles only in the HTML layout files.
Compiling css
To compile any extra css you add to raw.css, run the following command:
Take a look at
package.json
to see what thetailwind
task is doing. Essentially it takes thestyles/raw.css
file, processes it and moves the output towwwroot/css/output.css
.Any questions, let me know!