Home>
We are developing a web application using Ruby on rails.
In order to create an administrator screen, I created an administrator screen by referring to the following site.
Reference site
https://qiita.com/enomotodev/items/5f6d9348207124a41bf9
I succeeded in creating the administrator screen, but it has nothing to do with the administrator screen
When I jumped to the localhost: 3000/home/index page etc., the color was different from before.
At first glance, I feel that the activeadmin style has been applied.
There was also a problem that the a tag was underlined even though the css style was applied, such as not underlining the a tag.
How can I solve this problem?
Someone please professor
application.scss
/ *
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
* vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
* files in this directory. Styles in this file should be added after the last require_ * statement.
* It is generally better to create a new file per style scope.
*
* = require_tree.
* = require_self
* /
@import "bootstrap";
a {
text-decoration: none;
}
-
Answer # 1
Related articles
- ruby on rails - about rails create action
- ruby on rails - not saved by create action
- ruby on rails - i get an error with rails db: create
- ruby - [rails] i want to create an image link using the url of the image output using active storage
- ruby on rails - i want to implement a function for administrator users to register luggage for general users in rails
- ruby on rails - unable to create controller
- ruby - [rails] i want to create a link including the data attribute with the link_to helper
- ruby on rails 5 - rails: i want to create a timetable app
- ruby on rails - about screen transition from rails top page to calendar page
- ruby on rails - create a chat feature with action cable on ec2 on rails aws
- ruby on rails - about switching screen display on multiple models
- ruby on rails - i can't create a model with rails
- ruby on rails - i want to be able to understand the group administrator
- ruby on rails - i want to make a screen transition with rails when api is received
- ruby - unable to create rails model (environment: cloud9)
- ruby on rails - when calling the create action, the name attribute changes depending on whether it is indexhtmlerb or newhtmlerb
- ruby on rails - [rails] about the problem that screen transition is not possible (error does not occur)
- ruby on rails - i want to create a like function with rails
- ruby - i can't create a custom account with rails stripe
Trends
- python - you may need to restart the kernel to use updated packages error
- dart - flutter: the instance member'stars' can't be accessed in an initializer error
- php - coincheck api authentication doesn't work
- php - i would like to introduce the coincheck api so that i can make payments with bitcoin on my ec site
- [php] i want to get account information using coincheck api
- the emulator process for avd pixel_2_api_29 was killed occurred when the android studio emulator was started, so i would like to
- javascript - how to check if an element exists in puppeteer
- sh - 'apt-get' is not recognized as an internal or external command, operable program or batch file
- i want to check the type of a shell script variable
- i want to call a child component method from a parent in vuejs
The ActiveAdmin css file seems to have affected the entire page
I was able to solve it by referring to the following site
https://qiita.com/shinichinomura/items/7d34a2068d951c46dfc3